|
formtableVisible to all users in the Macro BrowserFormatted TableDescription: Creates a simple 2 x 2 table with the column headings filled in
FormattingEscaped
Template:
## @param Head1:type=string|desc=Heading ## @param Head2:type=string|desc=Heading ## @param Cell1:type=string|desc=cell ## @param Cell2:type=string|desc=cell #set ($paramHead1 ="Parameter") #set ($paramHead2 ="Description") <div id="preformattedtable"> <table> <tr> <th>$paramHead1</th> <th>$paramHead2</th> </tr> <tr> <td>$!paramCell1</td> <td>$!paramCell2</td> </tr> </table> </div> |
To add the macro to a page:
Find and select the 'Formatted Table' macro.
To change the content in the cells of the table:
Note: Content entered into the body of the 'Formatted Table' macro will not appear on the page.