From c79e5f0e5b53470ddbe9478d9f41eebfd3cd0860 Mon Sep 17 00:00:00 2001 From: joey Date: Wed, 7 Mar 2007 19:11:00 +0000 Subject: [PATCH] missed a few --- IkiWiki/Plugin/table.pm | 6 ++---- 1 file 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} = ','; } } -- 2.45.0