sipb-www
/
ikiwiki.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Improve error message when postsignin (probably from openid) fails due to
[ikiwiki.git]
/
IkiWiki
/
Plugin
/
typography.pm
diff --git
a/IkiWiki/Plugin/typography.pm
b/IkiWiki/Plugin/typography.pm
index d613f873b146dd40c90324627ad0b8993b368df9..682dadab7bb7cddc7c960eb9beffcef05a43f5d6 100644
(file)
--- 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});
} # }}}