diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-03-07 19:12:22 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-03-07 19:12:22 +0000 |
commit | 59b07af4cf3bc6acabafba826f3261c201d5e1bd (patch) | |
tree | 06132a14fdc29f23d77013b49b544e755cbd6fb5 /IkiWiki | |
parent | c79e5f0e5b53470ddbe9478d9f41eebfd3cd0860 (diff) | |
download | ikiwiki-59b07af4cf3bc6acabafba826f3261c201d5e1bd.tar ikiwiki-59b07af4cf3bc6acabafba826f3261c201d5e1bd.tar.gz |
cleanup
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/table.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/table.pm b/IkiWiki/Plugin/table.pm index 26e434b1f..0501020ab 100644 --- a/IkiWiki/Plugin/table.pm +++ b/IkiWiki/Plugin/table.pm @@ -5,7 +5,6 @@ use warnings; use strict; use IkiWiki; -use IkiWiki::Plugin::mdwn; sub import { #{{{ hook(type => "preprocess", id => "table", call => \&preprocess); @@ -136,7 +135,7 @@ sub split_dsv ($$) { #{{{ return @data; } #}}} -sub htmlize ($$$){ #{{{ +sub htmlize ($$$) { #{{{ my $page = shift; my $destpage = shift; my $text = shift; |