node_message_as_html

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 "node_message_as_html".
... in poll.naml
35
36
37
38
39
40
41
42
43
44
45
46
<override_macro name="node_message_as_html" requires="node">
    <n.overridden />
 
    <n.comment.>
        If this is a topic page (which calls the "message_text" command), then show the poll.
        Otherwise (email messages), print a link to the poll.
    </n.comment.>
    <n.if.is_in_command name="email_message">
        <then.poll_link/>
        <else.poll/>
    </n.if.is_in_command>
</override_macro>
Overrides default macro
... in message.naml
21
22
23
<macro name="node_message_as_html" requires="node">
    <n.node_message_block.message.message_as_html />
</macro>