aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/wikitext.pm
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Plugin/wikitext.pm')
-rw-r--r--IkiWiki/Plugin/wikitext.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/wikitext.pm b/IkiWiki/Plugin/wikitext.pm
index 9fa87dafb..5c46c565c 100644
--- a/IkiWiki/Plugin/wikitext.pm
+++ b/IkiWiki/Plugin/wikitext.pm
@@ -11,8 +11,9 @@ sub import { #{{{
IkiWiki::hook(type => "htmlize", id => "wiki", call => \&htmlize);
} # }}}
-sub htmlize ($) { #{{{
- my $content = shift;
+sub htmlize (@) { #{{{
+ my %params=@_;
+ my $content = $params{content};
return Text::WikiFormat::format($content, undef, { implicit_links => 0 });
} # }}}