1 The `table` directive is supplied by the [[!iki plugins/table desc=table]] plugin.
3 This directive can build HTML tables from data in CSV (comma-separated values)
4 or DSV (delimiter-separated values) format.
15 \[[!table class="book_record" format=csv file="data/books/record1"]]
17 In this second example the `record1` page should be similar to:
19 "Title","Perl Best Practices"
20 "Author","Damian Conway"
21 "Publisher","O’Reilly"
23 To make a cell span multiple columns, follow it with one or more empty
29 this cell spans 4 columns|||
34 * `data` - Values for the table.
35 * `file` - A file in the wiki containing the data.
36 * `format` - The format of the data, either "csv", "dsv", or "auto"
38 * `delimiter` - The character used to separate fields. By default,
39 DSV format uses a pipe (`|`), and CSV uses a comma (`,`).
40 * `class` - A CSS class for the table html element.
41 * `header` - By default, or if set to "row", the first data line is used
42 as the table header. Set it to "no" to make a table without a header, or
43 "column" to make the first column be the header.
45 [[!meta robots="noindex, follow"]]