How do I create a table in XiNotes?
August 10, 2007 03:01:46 Last update: August 10, 2007 03:01:46
It's actually quite easy to create tables in XiNotes. The syntax is almost the same as standard HTML, except that you use [table], [tr], [td] instead of <table>, <tr> and <td>.
For example, the following table:
is created with:
For example, the following table:
Header 1 | Header 2 |
---|---|
Cell 11 | Cell 12 |
Cell 21 | Cell 22 |
is created with:
[table] [tr][th]Header 1[/th][th]Header 2[/th][/tr] [tr][td]Cell 11[/td][td]Cell 12[/td][/tr] [tr][td]Cell 21[/td][td]Cell 22[/td][/tr] [/table]