3 package IkiWiki::Plugin::wikitext;
10 IkiWiki::hook(type => "filter", id => "wiki", call => \&filter);
11 IkiWiki::hook(type => "htmlize", id => "wiki", call => \&htmlize);
17 # Make CamelCase links work by promoting them to fullfledged
18 # WikiLinks. This regexp is based on the one in Text::WikiFormat.
19 $params{content}=~s#(?<![["/>=])\b((?:[A-Z][a-z0-9]\w*){2,})#[[$1]]#g;
21 return $params{content};
24 sub htmlize ($) { #{{{
27 return Text::WikiFormat::format($content, undef, { implicit_links => 0 });