Parser testing/doTableStuff/simple
From Meta, a Wikimedia project coordination wiki
That should be in 3 parts, all depending on the "input" part
input [edit]
{|
| (Cell 1, row 1)
| (Cell 2, row 1)
|-
| (Cell 1, row 2)
| (Cell 2, row 2)
|}
result [edit]
| (Cell 1, row 1) | (Cell 2, row 1) |
| (Cell 1, row 2) | (Cell 2, row 2) |
xhtml [edit]
<table> <tr> <td>(Cell 1, row 1)</td> <td>(Cell 2, row 1)</td> </tr> <tr> <td>(Cell 1, row 2)</td> <td>(Cell 2, row 2)</td> </tr> </table>