Changes between Version 4 and Version 5 of TablePlugin/docs


Ignore:
Timestamp:
Aug 5, 2012, 3:57:06 PM (12 years ago)
Author:
jonny
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TablePlugin/docs

    v4 v5  
    1818    - etc...
    1919
     20== Keywords ==
     21
     22There are a number of keywords that are used within the TablePlugin macro that define various elements of the table. The keywords are preceded with the @ character to distinguish them.
     23
     24The keywords:
     25    - @table
     26    - @css
     27    - @row
     28    - @column
     29    - @<cell_name>
     30
     31The last one `@<cell_name>` is variable. It is based on the names you give the cells in your table definition. This is covered in more detail below in the Table Definition section.
     32
    2033== Table Styles ==
    2134
     
    2639    - CSS Styles
    2740
     41Both styles use the following naming conventions: `@TYPE NAME (@STYLE): DATA`
     42
    2843Table Styles define a full set of styles that can be applied to a table. They are written in CSS.
    2944
     45Table Styles are written as follows:
     46
     47{{{
     48@table table_style_name:
     49
     50
     51
     52}}}
     53
     54This allows the individual to create different table styles depending on what
     55
    3056CSS Styles define individual styles that can be applied to individual elements of a table. They are also written in CSS.
     57
     58CSS Styles are written as follows:
     59
     60{{{
     61
     62}}}
    3163
    3264== Table Definition ==