summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/typography.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/typography.pm b/IkiWiki/Plugin/typography.pm
index d613f873b..6c5f06b0f 100644
--- a/IkiWiki/Plugin/typography.pm
+++ b/IkiWiki/Plugin/typography.pm
@@ -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});
} # }}}