Announcement

Collapse
No announcement yet.

Table Support Added

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Table Support Added

    This new bbcode transform this text:
    HTML Code:
    [table 0 1 3]- title 1 |- title 2 |- title 3
    -cell 1 |> cell 2 | cell 3
    >cell 4 | cell 5 | cell 6
    cell 7 |- cell 8 |> cell 9
    more more text | more more text | more more text[/table]
    in a html table with the style of your forum:

    [table 0 1 3]- title 1 |- title 2 |- title 3
    -cell 1 |> cell 2 | cell 3
    >cell 4 | cell 5 | cell 6
    cell 7 |- cell 8 |> cell 9
    more more text | more more text | more more text[/table]

    How to use:
    - Every pipe character (ascii 124) is a cell delimiter (<td></td>)
    - Every Carriage Return character (ascii 13) is a row delimiter (<tr></tr>)
    - If the first character of a cell is ">", then the cell is right alignment
    - If the first character of a cell is "-", then the cell is center
    - Always, the first row are the headers.
    - The format of tag is [table X Y Z], where X is the border, Y is the cellspacing and Z is the cellpadding of the table.
    - X, Y, and Z are integer numbers >= 0.
Working...
X