edit_header

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 "edit_header".
... in utilities.naml
282
283
284
285
286
287
288
289
290
291
292
293
<macro name="edit_header" parameters="first_text,second_text">
    <div class="big-title second-font shaded-bg-color" style="padding: .4em;margin-top:.1em">
        <n.first_text/>
        <n.if.not.is_null.second_text>
            <then>
                <span class="weak-color">
                    <n.prepend. prefix="&ndash; "><n.second_text/></n.prepend.>
                </span>
            </then>
        </n.if.not.is_null.second_text>
    </div>
</macro>