map_test

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "map_test".
... in test_page.naml
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<macro name="map_test" requires="url_mapper">  
    <n.regex text="[n.path/]">  
        <pattern>  
            ^/test.html$  
        </pattern>  
        <do>  
            <n.if.find>  
                <then>  
                    <n.set_parameter name="macro" value="test_page" />  
                    <n.exit/>  
                </then>  
            </n.if.find>  
        </do>  
    </n.regex>  
</macro>