summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/typography.pm
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Plugin/typography.pm')
-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 5073d51d3..fe6996898 100644
--- a/IkiWiki/Plugin/typography.pm
+++ b/IkiWiki/Plugin/typography.pm
@@ -22,7 +22,7 @@ sub sanitize (@) { #{{{
my %params=@_;
eval q{use Text::Typography};
- return $params{content} if $@;
+ error($@) if $@;
my $attributes=defined $config{typographyattributes} ? $config{typographyattributes} : '3';
return Text::Typography::typography($params{content}, $attributes);