One limitation of CMSimple's built in editor is the lack of a simple table editor to create tables with or without borders (columns of data). You can, however use the playground on this (or another) wiki to create your tables.
^Non aligned^Left aligned ^ Center aligned ^ Right aligned^ |Bike|Train | Glider | Car| |55|63 | 23 | 78| |Merged || 17 | 1.07|
… and hit Preview which shows the following …
| Non aligned | Left aligned | Center aligned | Right aligned |
|---|---|---|---|
| Bike | Train | Glider | Car |
| 55 | 63 | 23 | 78 |
| Merged | 17 | 1.07 | |
Note how the leading or trailing double spaces within a cell define the alignment. You can cut'n'paste the finished table from the wiki into your CMSimple page. Since you have only pressed the Preview button your work will not be saved on the wiki site.
Edit your CSS stylesheet to include the following
.leftalign {text-align:left;}
.centeralign {text-align:center;}
.rightalign {text-align:right;}
.leftalign, .centeralign, .rightalign {font-size:10pt;}
to make the wiki align styles work.