3 package IkiWiki::Plugin::camelcase;
9 IkiWiki::hook(type => "filter", id => "camelcase", call => \&filter);
15 # Make CamelCase links work by promoting them to fullfledged
16 # WikiLinks. This regexp is based on the one in Text::WikiFormat.
17 $params{content}=~s#(?<![[|"/>=])\b((?:[A-Z][a-z0-9]\w*){2,})#[[$1]]#g;
19 return $params{content};