diff options
author | Joey Hess <joey@kitenet.net> | 2007-12-28 16:15:23 -0500 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2007-12-28 16:15:23 -0500 |
commit | 1bed8653606bdaa778e34fdf6b257b7e27f0598b (patch) | |
tree | c3a5b122b8251f70a10fca34982e410093721a25 /doc/plugins | |
parent | c2afda7f90c595d3256625c81aabc90252b7b07f (diff) | |
parent | d72b92c44317d0ca98324d29af660f50d3e814c9 (diff) |
Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info
Diffstat (limited to 'doc/plugins')
-rw-r--r-- | doc/plugins/install.mdwn | 2 | ||||
-rw-r--r-- | doc/plugins/table/discussion.mdwn | 19 |
2 files changed, 20 insertions, 1 deletions
diff --git a/doc/plugins/install.mdwn b/doc/plugins/install.mdwn index aa1c932bc..3efcb4c4b 100644 --- a/doc/plugins/install.mdwn +++ b/doc/plugins/install.mdwn @@ -10,7 +10,7 @@ plugins to `/usr/local/lib/site_perl/IkiWiki/Plugin` You can use the `libdir` configuration option to add a directory to the search path. For example, if you set `libdir` to `/home/you/.ikiwiki/`, -then ikiwiki will look for plugins in `/home/you/.ikiwiki/IkiWiki/Plugins`. +then ikiwiki will look for plugins in `/home/you/.ikiwiki/IkiWiki/Plugin`. Ikiwiki also supports plugins that are external programs. These are typically written in some other language than perl. Ikiwiki searches for diff --git a/doc/plugins/table/discussion.mdwn b/doc/plugins/table/discussion.mdwn index f0ebb6d94..79a89d8a7 100644 --- a/doc/plugins/table/discussion.mdwn +++ b/doc/plugins/table/discussion.mdwn @@ -5,3 +5,22 @@ Interesting that you chose to use CSV format. Seems there are advantages (standardisation) and disadvantages (limited to simple tables). --[[Joey]] + +# Patch for new header options + +I have written a small patch for this plugin to enable the first column as a header instead of just the first row or no header. + +In my version, there is three options for the header field : + ++ **no**: no header; ++ **col**: the first column as header; ++ **row**: the first row as header (for compatibility reason, **yes** is an alternate value for this option). + +Here is the links to the patch and to a patched version of the plugin : + ++ [table.pm.patch](http://lohrun.free.fr/ikiwiki/table.pm.patch) ++ [table.pm](http://lohrun.free.fr/ikiwiki/table.pm) + +I hope this might be intresting for some ikiwiki user's. + +--[[AlexandreDupas]] |