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