instant_text

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 "instant_text".
... in instant_text.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<override_macro name="instant_text" requires="subscription,node_page" unindent="true">
    <n.if.page_node.is_app>
        <then>
            <t><t.username.page_node.owner.name/> created a new subcategory</t>:
            <n.page_node.subject/>
        </then>
    </n.if.page_node.is_app>
 
    <n.page_node.text_email_message_with_signature />
     _______________________________________________
    <t>Replies to this email are disabled. To respond visit the forum using the link below</t>:
    <n.page_node.url/>
<!--    <n.start_new_topic_line/> -->
    <n.unsubscribe_line format="text"/>
</override_macro>
Overrides default macro
... in email.naml
73
74
75
76
77
78
79
80
81
82
83
84
85
<macro name="instant_text" requires="subscription,node_page" unindent="true">
    <n.if.page_node.is_app>
        <then>
            <t><t.username.page_node.owner.name/> created a new subcategory</t>:
            <n.page_node.subject/>
        </then>
    </n.if.page_node.is_app>
 
    <n.page_node.text_email_message_with_signature />
    _______________________________________________
    <n.page_node.url/>
    <n.unsubscribe_line format="text"/>
</macro>