]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/typography.pm
update
[ikiwiki.git] / IkiWiki / Plugin / typography.pm
index d613f873b146dd40c90324627ad0b8993b368df9..682dadab7bb7cddc7c960eb9beffcef05a43f5d6 100644 (file)
@@ -14,6 +14,8 @@ sub sanitize (@) { #{{{
        my %params=@_;
 
        eval q{use Text::Typography};
+       return $params{content} if $@;
+
        return Text::Typography::typography($params{content});
 } # }}}