No edit summary |
No edit summary |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
|button=Table.gif | |button=Table.gif | ||
|tag=table | |tag=table | ||
|example=< | |example=[table]<br> [tr][td]text[/td][td]or more[/td][/tr]<br> [tr][td]BB[/td][td]Code[/td][/tr]<br> | ||
[/table] | |||
|result=<table class="bbc_table"> | |||
<tr><td>text</td><td>or more</td></tr> | |||
<tr><td>BB</td><td>Code</td></tr></table> | |||
|description=A table | |description=A table organizes one or more lines of text into columns. It does this by organizing the text into table rows and, within each row, table data. Text is placed inside the Table Data tags to create the table. | ||
Although the tags are based on the html <nowiki><table>, <tr> and <td></nowiki> tags there is no further formatting possible. | Although the tags are based on the html <nowiki><table>, <tr> and <td></nowiki> tags there is no further formatting possible. | ||
Line 57: | Line 57: | ||
To add a bit of padding, add some blank Data tags (empty columns), this works better than just padding with spaces. | To add a bit of padding, add some blank Data tags (empty columns), this works better than just padding with spaces. | ||
<pre> [table] | |||
[tr] | [tr] | ||
[td]R1C1[/td][td][/td][td]R1C2[/td][td][/td][td]R1C3[/td] | [td]R1C1[/td][td][/td][td]R1C2[/td][td][/td][td]R1C3[/td] | ||
Line 67: | Line 67: | ||
[td]R3C1[/td][td][/td][td]R3C2[/td][td][/td][td]R3C3[/td] | [td]R3C1[/td][td][/td][td]R3C2[/td][td][/td][td]R3C3[/td] | ||
[/tr] | [/tr] | ||
[/table] | [/table]</pre> | ||
}} | }} | ||
[[Category:Bulletin_Board_Code]] | [[Category:Bulletin_Board_Code]] | ||
[[Category:Basic Bulletin Board Code]] | [[Category:Basic Bulletin Board Code]] |
Latest revision as of 16:15, 10 July 2013
description: A table organizes one or more lines of text into columns. It does this by organizing the text into table rows and, within each row, table data. Text is placed inside the Table Data tags to create the table.
Although the tags are based on the html <table>, <tr> and <td> tags there is no further formatting possible.
In this example a simple 3x3 table is created. Start a new topic and click the Insert Table button which adds the following code.
[table] [tr] [td][/td] [/tr] [/table]
This generates the start and end of a Table with a Table Row and Table Data inside.
Type two more Data tags within the Row then copy the Row down twice to end up with a table like this:
[table] [tr] [td][/td][td][/td][td][/td] [/tr] [tr] [td][/td][td][/td][td][/td] [/tr] [tr] [td][/td][td][/td][td][/td] [/tr] [/table]
Add text between the Data tags and you will have a formatted table:
[table] [tr] [td]R1C1[/td][td]R1C2[/td][td]R1C3[/td] [/tr] [tr] [td]R2C1[/td][td]R2C2[/td][td]R2C3[/td] [/tr] [tr] [td]R3C1[/td][td]R3C2[/td][td]R3C3[/td] [/tr] [/table]
Which displays like this.
R1C1 | R1C2 | R1C3 |
R2C1 | R2C2 | R2C3 |
R3C1 | R3C2 | R3C3 |
To add a bit of padding, add some blank Data tags (empty columns), this works better than just padding with spaces.
[table] [tr] [td]R1C1[/td][td][/td][td]R1C2[/td][td][/td][td]R1C3[/td] [/tr] [tr] [td]R2C1[/td][td][/td][td]R2C2[/td][td][/td][td]R2C3[/td] [/tr] [tr] [td]R3C1[/td][td][/td][td]R3C2[/td][td][/td][td]R3C3[/td] [/tr] [/table]
example: [table]
[tr][td]text[/td][td]or more[/td][/tr]
[tr][td]BB[/td][td]Code[/td][/tr]
[/table]
result:
text | or more |
BB | Code |