message_as_html

   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 "message_as_html".
... in message.naml
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<macro name="message_as_html" requires="message">
    <n.if.either condition1="[n.is_deleted/]" condition2="[n.is_deactivated/]">
        <then>
            <b><t>CONTENTS DELETED</t></b>
            <div class="weak-color"><t>The author has deleted this message.</t></div>
        </then>
        <else>
            <n.set_var. name="output">
                <n.as_html_list.process_message_html />
            </n.set_var.>
            <n.if.is_imported_mail>
                <then.set_var. name="output">
                    <n.remove_unsubscription_link.var name="output" />
                </then.set_var.>
            </n.if.is_imported_mail>
            <n.var name="output" />
        </else>
    </n.if.either>
</macro>