2 # By mazirian; GPL license
5 package IkiWiki::Plugin::textile;
12 hook(type => "htmlize", id => "txtl", call => \&htmlize);
15 sub htmlize (@) { #{{{
17 my $content = $params{content};
19 eval q{use Text::Textile};
20 return $content if $@;
21 return Text::Textile::textile($content);