3 package IkiWiki::Plugin::wikitext;
10 hook(type => "getsetup", id => "wiki", call => \&getsetup);
11 hook(type => "htmlize", id => "wiki", call => \&htmlize);
17 safe => 0, # format plugin
26 my $content = $params{content};
28 eval q{use Text::WikiFormat};
29 return $content if $@;
30 return Text::WikiFormat::format($content, undef, { implicit_links => 0 });