show_notice_if_not_compiled

   Usages of this macro
... in macro_viewer.naml
415
416
417
418
419
420
421
422
423
424
425
426
<macro name="show_notice_if_not_compiled">
    <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.not
Binary
Namespace: BasicNamespace
Parameters: condition
.is_compiled
Binary
Namespace: MacroSourceNamespace
>
        <then>
            <div class="info-message rounded" style="padding:.4em; margin:.2em 0">
                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
                <a id="find-usages" href="#">try finding all usages of "<n.name
Binary
Namespace: MacroSourceNamespace
/>"</a>.
                <n.current_find_usages_path
Macro
Parameters: element_name
 element_name="find-usages"/>
            </div>
        </then>
    </n.if.not.is_compiled>
</macro>