All tables described earlier are aligned to the left and tables have table and cell borders. To align table columns on the right or to the center use the following characters.
Right-aligned table with header row
<table>
Header Cell 1 Header Cell 2 Header Cell 3
~~~~~~~~~~~~~ ~~~~~~~~~~~~~ ~~~~~~~~~~~~~
Data Cell 1 Data Cell 2 Data Cell 3
Data Cell 4 Data Cell 5 Data Cell 6
</table>
Center tables without header row
<table>
=========== =========== ===========
Data Cell 1 Data Cell 2 Data Cell 3
Data Cell 4 Data Cell 5 Data Cell 6
</table>
Justified table columns with header row
<table>
Header Cell 1 Header Cell 2 Header Cell 3
############# ############# #############
Data Cell 1 Data Cell 2 Data Cell 3
Data Cell 4 Data Cell 5 Data Cell 6
</table>