aboutsummaryrefslogtreecommitdiff
path: root/test/tables.bbcode
blob: 1ab00b9e5326b1a3469f67ceadc031efa7c469ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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]