error($@) if $@;
return
+ plugin => {
+ safe => 1,
+ rebuild => 1,
+ },
typographyattributes => {
type => "string",
- default => "3",
- example => "tag",
+ example => "3",
description => "Text::Typography attributes value",
+ advanced => 1,
safe => 1,
rebuild => 1,
},
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);