3 # based on the WikiText plugin.
4 package IkiWiki::Plugin::creole;
11 hook(type => "htmlize", id => "creole", call => \&htmlize);
14 sub htmlize (@) { #{{{
16 my $content = $params{content};
18 eval q{use Text::WikiCreole};
19 return $content if $@;
21 # don't parse WikiLinks, ikiwiki already does
23 creole_custombarelinks();
25 return creole_parse($content);