post_subject

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 "post_subject".
... in topic.naml
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
<macro name="post_subject" parameters="separator" requires="node">
    <n.set_var. name='parent_subject'>
        <n.if.has_parent>
            <then.parent_node.subject/>
        </n.if.has_parent>
    </n.set_var.>
    <n.if.not.ends_with text="[n.subject/]" suffix="[n.var name='parent_subject'/]">
        <then>
            <span class="post-subject adbayes-content"><n.subject/> <n.hide_null.separator/></span>
        </then>
    </n.if.not.ends_with>
</macro>