master
joey 2006-09-21 20:30:03 +00:00
parent c7140ad90b
commit bbfe1b9058
1 changed files with 1 additions and 1 deletions

View File

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