3 package IkiWiki::Plugin::typography;
10 IkiWiki::hook(type => "sanitize", id => "typography", call => \&sanitize);
13 sub sanitize (@) { #{{{
16 eval q{use Text::Typography};
17 return $params{content} if $@;
19 return Text::Typography::typography($params{content});