macro_results_table

NAML documentation   Watch a video
   Usages of this macro
... in macro_viewer.naml
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
<macro name="macro_results_table" requires="command_list">
    <n.put_in_head
Binary
Namespace: HtmlNamespace
Parameters: in_head
.>
        <style type="text/css">
            table.macro-results {
                margin-top:.5em;
                border-spacing: 0;
            }
            table.macro-results td {
                padding: .4em 1.2em;
            }
        </style>
    </n.put_in_head.>
    <n.zebra_table_javascript
Macro
Parameters: table_selector
 table_selector="#macro-results"/>
    <table id="macro-results" class="macro-results weak-color">
        <tr class="shaded-bg-color bold">
            <td>Macro Name</td>
            <td>Requires</td>
            <td>Source File</td>
        </tr>
        <n.loop
Macro
Requires: sequence
Parameters: by, do
.current_command
Binary
Namespace: Commands
Parameters: do
.>
            <tr style="[n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.is_custom_tweak
Binary
Namespace: CommandInfo
][then]font-weight:bold[/then][/n.if.is_custom_tweak]">
                <td><a href="[n.command_path
Macro
Requires: command_info
/]"><n.name
Binary
Namespace: CommandInfo
/></a></td>
                <td><em><n.hide_null
Binary
Namespace: BasicNamespace
Parameters: value
.required_namespaces
Binary
Namespace: CommandInfo
/></em></td>
                <td><n.clean_source_name
Macro
Parameters: source
.source
Binary
Namespace: CommandInfo
/></td>
            </tr>
        </n.loop.current_command.>
    </table>
</macro>