X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/84c905ec2011ec846d3d8b27f21f5ffd53c73840..4324746bea58784ad82a2de7832cafad2a25ed63:/IkiWiki/Plugin/typography.pm?ds=inline diff --git a/IkiWiki/Plugin/typography.pm b/IkiWiki/Plugin/typography.pm index 8ae1f3445..6229e6c33 100644 --- a/IkiWiki/Plugin/typography.pm +++ b/IkiWiki/Plugin/typography.pm @@ -26,8 +26,7 @@ sub getsetup () { #{{{ return typographyattributes => { type => "string", - default => "3", - example => "tag", + example => "3", description => "Text::Typography attributes value", safe => 1, rebuild => 1, @@ -38,7 +37,7 @@ sub sanitize (@) { #{{{ my %params=@_; eval q{use Text::Typography}; - error($@) if $@; + return $params{content} if $@; my $attributes=defined $config{typographyattributes} ? $config{typographyattributes} : '3'; return Text::Typography::typography($params{content}, $attributes);