View source for Table Syntax

{{toc numerate=1}}

  * caption
  * th
  * colspan / rowspan
  * text alignment
    * indent
    * left (default)
    * center
    * right
  * thead / tfoot / tbody
  * colgroup / col
  * CSS: color, styles, width

resources
  * https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Structuring_content/HTML_table_basics
  * https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/table
  * https://html.spec.whatwg.org/multipage/tables.html#the-table-element

===Syntax===
#|
|| ^ Syntax ^ Notes ||
^| Caption | ##""?| Caption |?""## | title of the table ||
^| Thead   | ##""*| Header | Header |*""## | head columns, entire row ||
^| Th | ##""^| Header | Col ||""##
##""|| Col ^ Header ||""## | head row ||
^| Cellspan | ##""||(colspan=2;rowspan=2) 2x2 | 1x1 ||""## | cell spanning, ##x## colspan, ##y## rowspan  ||
^| Tfoot | ##""=| Footer | Footer |=""## | not sure if this should be implemented at all ||
|#

===One===

#|
?| Table Caption |?
|| | ||
|| | | ||
|#

#|
?| Table Caption |?
|| | | ||
||  | ||
|#

#|
||(colspan=2)Cell spanning 2 columns|Cell 3||
||Cell 4|Cell 5|Cell 6||
||Cell 7|Cell 8|Cell 9||
|#

#|
||(rowspan=2)Cell spanning 2 rows|Cell 2|Cell 3||
||Cell 5|Cell 6||
||Cell 7|Cell 8|Cell 9||
|#

#|
?|Fruit production in the last two years|?
|| ^(colspan=2)Apples^(colspan=2)Pears||
|| ^2005^2006^2005^2006||
^|Mary|300Kg|320Kg|400kg|280Kg||
^|John|400Kg|630Kg|210Kg|300Kg||
|#

#|
^|(colspan=2 rowspan=2)2x2|(colspan=2)2x1|(rowspan=2)1x2||
||(rowspan=2)1x2|1x1||
||1x1|1x1|(colspan=2)2x1||
|#


===Two===

#|
?| Table Caption |?
*| 1 | 2 |*
|| a | b ||
|#

===Three===

#|
*| 1 | 2 |*
|| a ^ b ||
|#

===Four===

#| 
?| Table Caption |?
*| Heading 1      | Heading 2       | Heading 3          |*
^| Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        ||
|| Row 2 Col 1    ^ some colspan ||
|| Row 3 Col 1    | Row 3 Col 2     ^ Row 3 Col 3        ||
|#

===Five===
#| 
|| Heading 1      ^ Heading 2       ^ Heading 3          ||
|| Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        ||
|| Row 2 Col 1    | some colspan ||
|| Row 3 Col 1    | Row 3 Col 2     | Row 3 Col 3        ||
|#

===Six===

#| 
|| ^ Heading 1 ^ Heading 2 ||
^| Heading 3    | Row 1 Col 2          | Row 1 Col 3        ||
^| Heading 4    | no colspan this time | ||
^| Heading 5    | Row 2 Col 2          | Row 2 Col 3        ||
|#


===Seven===
#| 
?| Table Caption |?
*|(width=200px) | Heading 1      | Heading 2       | Heading 3         |*
^| Row 1 Col 1    |(colspan=2 align=center) Row 1 Col 2     | Row 1 Col 3       ||
|| Row 2 Col 1    ^(colspan=3) some colspan  ||
|| Row 3 Col 1    |(colspan=2 bgcolor=green) Row 3 Col 2     ^ Row 3 Col 3        ||
|#