packages feed

pandoc-3.8.3: test/tables.bbcode

Simple table with caption:

Demonstration of simple table syntax.
[table]
[tr][th]Right[/th][th]Left[/th][th]Center[/th][th]Default[/th][/tr]
[tr][td]12[/td][td]12[/td][td]12[/td][td]12[/td][/tr]
[tr][td]123[/td][td]123[/td][td]123[/td][td]123[/td][/tr]
[tr][td]1[/td][td]1[/td][td]1[/td][td]1[/td][/tr]
[/table]

Simple table without caption:

[table]
[tr][th]Right[/th][th]Left[/th][th]Center[/th][th]Default[/th][/tr]
[tr][td]12[/td][td]12[/td][td]12[/td][td]12[/td][/tr]
[tr][td]123[/td][td]123[/td][td]123[/td][td]123[/td][/tr]
[tr][td]1[/td][td]1[/td][td]1[/td][td]1[/td][/tr]
[/table]

Simple table indented two spaces:

Demonstration of simple table syntax.
[table]
[tr][th]Right[/th][th]Left[/th][th]Center[/th][th]Default[/th][/tr]
[tr][td]12[/td][td]12[/td][td]12[/td][td]12[/td][/tr]
[tr][td]123[/td][td]123[/td][td]123[/td][td]123[/td][/tr]
[tr][td]1[/td][td]1[/td][td]1[/td][td]1[/td][/tr]
[/table]

Multiline table with caption:

Here's the caption. It may span multiple lines.
[table]
[tr][th]Centered Header[/th][th]Left Aligned[/th][th]Right Aligned[/th][th]Default aligned[/th][/tr]
[tr][td]First[/td][td]row[/td][td]12.0[/td][td]Example of a row that spans multiple lines.[/td][/tr]
[tr][td]Second[/td][td]row[/td][td]5.0[/td][td]Here's another one. Note the blank line between rows.[/td][/tr]
[/table]

Multiline table without caption:

[table]
[tr][th]Centered Header[/th][th]Left Aligned[/th][th]Right Aligned[/th][th]Default aligned[/th][/tr]
[tr][td]First[/td][td]row[/td][td]12.0[/td][td]Example of a row that spans multiple lines.[/td][/tr]
[tr][td]Second[/td][td]row[/td][td]5.0[/td][td]Here's another one. Note the blank line between rows.[/td][/tr]
[/table]

Table without column headers:

[table]
[tr][td]12[/td][td]12[/td][td]12[/td][td]12[/td][/tr]
[tr][td]123[/td][td]123[/td][td]123[/td][td]123[/td][/tr]
[tr][td]1[/td][td]1[/td][td]1[/td][td]1[/td][/tr]
[/table]

Multiline table without column headers:

[table]
[tr][td]First[/td][td]row[/td][td]12.0[/td][td]Example of a row that spans multiple lines.[/td][/tr]
[tr][td]Second[/td][td]row[/td][td]5.0[/td][td]Here's another one. Note the blank line between rows.[/td][/tr]
[/table]