aboutsummaryrefslogtreecommitdiff
path: root/doc/plugins/table.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-02 14:57:20 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-02 14:57:20 -0400
commit657bf7846d129b2ff0ab0d2264610c689d4ecd02 (patch)
tree40fe9784c029a43a77612497265c3f2cb3d8e49f /doc/plugins/table.mdwn
parentecb2626309754d3bb8fb7fdb59126169db92026a (diff)
downloadikiwiki-657bf7846d129b2ff0ab0d2264610c689d4ecd02.tar
ikiwiki-657bf7846d129b2ff0ab0d2264610c689d4ecd02.tar.gz
table: Support header=column to make the table header be the first column of the data. (AlexandreDupas)
Diffstat (limited to 'doc/plugins/table.mdwn')
-rw-r--r--doc/plugins/table.mdwn5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/plugins/table.mdwn b/doc/plugins/table.mdwn
index b99bb7cd5..2dccb9458 100644
--- a/doc/plugins/table.mdwn
+++ b/doc/plugins/table.mdwn
@@ -41,5 +41,6 @@ cells. For example:
* `delimiter` - The character used to separate fields. By default,
DSV format uses a pipe (`|`), and CSV uses a comma (`,`).
* `class` - A CSS class for the table html element.
-* `header` - Set to "no" to make a table without a header. By default,
- the first data line is used as the table header.
+* `header` - By default, or if set to "row", the first data line is used
+ as the table header. Set it to "no" to make a table without a header, or
+ "column" to make the first column be the header.