diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-03-07 19:11:00 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-03-07 19:11:00 +0000 |
commit | c79e5f0e5b53470ddbe9478d9f41eebfd3cd0860 (patch) | |
tree | cba1610c24eadbef81efca25d6d0ef8f37f4efbd /IkiWiki | |
parent | 0d108e74d9b48ba080c128407eed3c787edec1bd (diff) | |
download | ikiwiki-c79e5f0e5b53470ddbe9478d9f41eebfd3cd0860.tar ikiwiki-c79e5f0e5b53470ddbe9478d9f41eebfd3cd0860.tar.gz |
missed a few
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/table.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/table.pm b/IkiWiki/Plugin/table.pm index c5404aa85..26e434b1f 100644 --- a/IkiWiki/Plugin/table.pm +++ b/IkiWiki/Plugin/table.pm @@ -13,8 +13,8 @@ sub import { #{{{ sub preprocess (@) { #{{{ my %params =( - format => 'auto', - header => 'yes', + format => 'auto', + header => 'yes', @_ ); @@ -29,11 +29,9 @@ sub preprocess (@) { #{{{ # first try the more simple format if (is_dsv_data($params{data})) { $params{format} = 'dsv'; - $params{sep_char}->{dsv} = '|'; } else { $params{format} = 'csv'; - $params{sep_char}->{csv} = ','; } } |