diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-09-02 14:57:20 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-09-02 14:57:20 -0400 |
commit | 657bf7846d129b2ff0ab0d2264610c689d4ecd02 (patch) | |
tree | 40fe9784c029a43a77612497265c3f2cb3d8e49f /doc/plugins | |
parent | ecb2626309754d3bb8fb7fdb59126169db92026a (diff) |
table: Support header=column to make the table header be the first column of the data. (AlexandreDupas)
Diffstat (limited to 'doc/plugins')
-rw-r--r-- | doc/plugins/table.mdwn | 5 | ||||
-rw-r--r-- | doc/plugins/table/discussion.mdwn | 5 |
2 files changed, 8 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. diff --git a/doc/plugins/table/discussion.mdwn b/doc/plugins/table/discussion.mdwn index 7228a83df..675f7f7df 100644 --- a/doc/plugins/table/discussion.mdwn +++ b/doc/plugins/table/discussion.mdwn @@ -24,3 +24,8 @@ Here is the links to the patch and to a patched version of the plugin : I hope this might be intresting for some ikiwiki user's. --[[AlexandreDupas]] + +> Thanks for the patch, I've merged it in. +> (Just FYI, in future, I recommend using a unified diff. Also, not +> renaming variables that don't really need to be renamed makes your patch +> easier to apply.) --[[Joey]] |