I want to pass on what I have learned about WikiTables and ask that it may be included on https://www.wikitree.com/wiki/Help:Editing_Tips#Tables
- To separate cells on a single line use "||" (plain cell) or "!!" (bold, centered cell).
Also, under "sortable", the following rules will make dates correctly sortable.
- A field of 11 characters as "dd mmm yyyy", e.g.: "03 May 2018". The spaces can be repalced by "/", "." or "-".
- A field of 10 characters as "dd/mm/yyyy", e.g.: "03/05/2018". The "/" can be replaced by "-" or "." but NOT a space.
- A field of 8 characters as "dd/mm/yy", e.g.: "03/05/18". The "/" can be replaced by "-" or "." but NOT a space.
The cell content is recognized as money, if the very first character is the Pound, Euro or Dollar sign (script bug: "$" will end up being sorted as numeric, but that may be ok unless you mix pounds and euros in the same column)
The cell content is recognized as numeric, if the very first character is a digit (0-9), ".", ",", "%", "?" or "$".
Anything else sorts as "case insensitive".
If a column does not lend itself to sorting (like images or comments), you can suppress the column from showing the sort arrow by adding a class statement:
"| class="unsortable" |columnName"
The script that does the decision on the type of data could be fixed so that money, dates and currency could work better. As it is now, a date starting with a digit could be sorted numerically rather than by date.