]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/typography.pm
ui improvements
[ikiwiki.git] / IkiWiki / Plugin / typography.pm
index 8ae1f3445c966e39bef6dfea77cd8072326c0027..3964d266ddaeccb28a11e3f0854dc700b674ec6f 100644 (file)
@@ -26,9 +26,9 @@ sub getsetup () { #{{{
        return
                typographyattributes => {
                        type => "string",
-                       default => "3",
-                       example => "tag",
+                       example => "3",
                        description => "Text::Typography attributes value",
+                       advanced => 1,
                        safe => 1,
                        rebuild => 1,
                },
@@ -38,7 +38,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);