aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/table.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-07 19:11:00 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-07 19:11:00 +0000
commitc79e5f0e5b53470ddbe9478d9f41eebfd3cd0860 (patch)
treecba1610c24eadbef81efca25d6d0ef8f37f4efbd /IkiWiki/Plugin/table.pm
parent0d108e74d9b48ba080c128407eed3c787edec1bd (diff)
downloadikiwiki-c79e5f0e5b53470ddbe9478d9f41eebfd3cd0860.tar
ikiwiki-c79e5f0e5b53470ddbe9478d9f41eebfd3cd0860.tar.gz
missed a few
Diffstat (limited to 'IkiWiki/Plugin/table.pm')
-rw-r--r--IkiWiki/Plugin/table.pm6
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} = ',';
}
}