digest_html

NAML documentation   Watch a video
Error Found
An error was found in the NAML code of this application – View Details | Go to NAML Editor
no macro found to override
  in (custom_tweak:save_post_by_email:1) - <override_macro name="save_post_by_email" requires="post_by_email" unindent="true">
   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 "digest_html".
... in email.naml
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<macro name="digest_html" requires="subscription,node_list" unindent="true">
    <n.set_local_subscription.this_subscription/>
    <h2><t>Digest Email</t></h2>
    <h3><n.local_subscription.node.subject/></h3>
    <div style="color:#666666;font-weight:bold">
        <n.digest_post_count/>
    </div>
 
    <n.reset_list_index/>
    <n.loop.>
        <p>
            <div style="font-size:120%">
                <a href="[n.current_node.url/]"><n.current_node.digest_subject/></a>
            </div>
            <n.trim.truncate. size="200">
                <n.compress.current_node.message.as_text/>
            </n.trim.truncate.>
            <div style="color:#666666; font: 11px tahoma,geneva,helvetica,arial,sans-serif;">
                <t>by <t.author><b><n.current_node.owner.name/></b></t.author></t>
                <t>on <t.date.current_node.when_created.custom_format format="yyyy-MM-dd"/></t>
                <t>in <t.location><i><n.current_node.get_app_node.subject/></i></t.location></t>
            </div>
        </p>
    </n.loop.>
 
    <br/>
    <br/>
    <n.unsubscribe_line format="html"/>
 
    <hr noshade="noshade" size="1" color="#cccccc" />
    <div style="color:#666666; font: 11px tahoma,geneva,helvetica,arial,sans-serif;line-height:1.5em">
        <t>DO NOT REPLY TO THIS EMAIL</t><br/>
        <br/>
        <t>Replies sent to this address are not read or processed.</t>
        <t>If you want to respond to a post for which you received this email,
        please go to the website: <t.url.local_subscription.node.url/></t>
        <br/>
        <n.macro_viewer_email_link macro="digest_html"/>
    </div>
</macro>