3 # based on the WikiText plugin.
4 package IkiWiki::Plugin::creole;
11 hook(type => "getsetup", id => "creole", call => \&getsetup);
12 hook(type => "htmlize", id => "creole", call => \&htmlize);
19 rebuild => 1, # format plugin
26 my $content = $params{content};
28 eval q{use Text::WikiCreole};
29 return $content if $@;
31 # don't parse WikiLinks, ikiwiki already does
33 creole_custombarelinks();
35 return creole_parse($content);