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