X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/c7140ad90b0db2078e70b9cd3f08e1d176125191..e7ee388ea1eb9b0c9625df828a3f565636acbc9c:/IkiWiki/Plugin/typography.pm diff --git a/IkiWiki/Plugin/typography.pm b/IkiWiki/Plugin/typography.pm index d613f873b..682dadab7 100644 --- a/IkiWiki/Plugin/typography.pm +++ b/IkiWiki/Plugin/typography.pm @@ -14,6 +14,8 @@ sub sanitize (@) { #{{{ my %params=@_; eval q{use Text::Typography}; + return $params{content} if $@; + return Text::Typography::typography($params{content}); } # }}}