If you want to do more advanced layouting on an UltraWiki page, you'll have to use HTML in the edit window. Some simple HTML layout commands include:
| row 1 column 1 | row 1 column 2 |
| row 2 column 1 | row 2 column 2 |
<table>
<tr>
<td>row 1 column 1</td>
<td>row 1 column 2</td>
</tr>
<tr>
<td>row 2 column 1</td>
<td>row 2 column 2</td>
</tr>
</table>
<a href="link">
<img src="../data/media/image.jpg" alt="" />
</a>
Break to the next line
without creating a new paragraph.
Break to the next line <br />without creating a new paragraph.
Just as with normal HTML markup, you can use inline CSS to style your tags. This way you could use text color or different font sizes. Naturally, the wiki should be kept clean and consistent.
This is very important.
This is very <span style="color:red;">important</span>.