use warnings;
use strict;
use IkiWiki;
-use Text::Typography;
sub import { #{{{
IkiWiki::hook(type => "sanitize", id => "typography", call => \&sanitize);
sub sanitize (@) { #{{{
my %params=@_;
+ eval q{use Text::Typography};
+ return $params{content} if $@;
+
return Text::Typography::typography($params{content});
} # }}}