table_column

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 "table_column".
... in columns.naml
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<macro name="table_column" parameters="head,body">
    <n.if.is_in_command name="calc_table_column_count">
        <then.global_set_var. name="calc_table_column_count">
            <n.int>
                <i.global_var name="calc_table_column_count" />
                <do.plus i="1" />
            </n.int>
        </then.global_set_var.>
        <else.if.is_in_command name="table_header">
            <then.head />
            <else.body />
        </else.if.is_in_command>
    </n.if.is_in_command>
</macro>