This page uses a CSS Module for COUNTING Table rowws:
[[module CSS]]
table {
counter-reset: line-number;
}
td:first-child:before {
content: counter(line-number) ".";
counter-increment: line-number;
padding-right: 0.3em;
}
[[/module]]
1.table without border
| Row1-cell1 | Cell2 |
| Row2-cell1 | Cell2 |
Done with Code 1:
[[table]]
[[row]]
[[cell]]
Row1-cell1
[[/cell]]
[[cell]]
Cell2
[[/cell]]
[[/row]]
[[row]]
[[cell]]
Row2-cell1
[[/cell]]
[[cell]]
Cell2
[[/cell]]
[[/row]]
[[/table]]
2.table with border
| Row1-cell1 | Cell2 |
| Row2-cell1 | Cell2 |
Done with Code 2:
[[table style="border:1px solid red;"]]
[[row style="border:1px solid green;"]]
[[cell style="border:1px solid black;"]]
Row1-cell1
[[/cell]]
[[cell style="border:1px solid black;"]]
Cell2
[[/cell]]
[[/row]]
[[row style="border:1px solid green;"]]
[[cell style="border:1px solid black;"]]
Row2-cell1
[[/cell]]
[[cell style="border:1px solid black;"]]
Cell2
[[/cell]]
[[/row]]
[[/table]]
3. simple table
| cell1 | cell2 |
| cell1 | cell2 |
done with Code 3:
||cell1||cell2||
||cell1||cell2||
4. simple table with leading cell
| cell1 | cell2 | |
| cell1 | cell2 |
Used Code 4:
|| ||cell1||cell2||
|| ||cell1||cell2||
standard - live "_template" used without any tricks but with header changed to show playground background image…





