blob: 3b66ab0d087e871e8152992552ade197610c8039 (
plain)
- #!/usr/bin/perl
- package IkiWiki::Plugin::typography;
- use warnings;
- use strict;
- use IkiWiki 2.00;
- sub import { #{{{
- IkiWiki::hook(type => "sanitize", id => "typography", call => \&sanitize);
- } # }}}
- sub sanitize (@) { #{{{
- my %params=@_;
- eval q{use Text::Typography};
- return $params{content} if $@;
- return Text::Typography::typography($params{content});
- } # }}}
- 1
|