Changes between Version 7 and Version 8 of TablePlugin/docs


Ignore:
Timestamp:
Aug 5, 2012, 4:17:45 PM (12 years ago)
Author:
jonny
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TablePlugin/docs

    v7 v8  
    3737{{{
    3838
     39{{{
     40#!table
     41#!This is a comment line, the above is the macro used by trac to determine that the TablePlugin should be used to render the following text.
     42#!All comment lines begin with #!
     43
     44#!-- First, we need to setup our column names, using the @column keyword, so that we can add data to them.
     45#!-- Define the three columns to use: task, details, status
     46
     47@column task
     48@column details
     49@column status
     50
     51#!-- Using the column names above (task, details, status), we can add the data.
     52#!--
     53
     54@task: Task
     55@details: Details
     56@status: Status
     57
     58#!-- The next row, noticed the @complete style applied to @status cell.
     59
     60@task: Task 1
     61@details: Details of Task 1.
     62@status (@complete): Complete
     63
     64#!-- Remaining rows below...
     65
     66@task: Task 2
     67@details: Details of Task 2.
     68@status: Complete
     69
     70@task: Task 3
     71@details: Details of Task 3.
     72@status: Not Complete
     73
     74}}}
     75
    3976}}}
    4077