]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - IkiWiki/Plugin/typography.pm
6c5f06b0f3928aa7550a9c6fb32b92ef1891f73d
[git.ikiwiki.info.git] / IkiWiki / Plugin / typography.pm
1 #!/usr/bin/perl
3 package IkiWiki::Plugin::typography;
5 use warnings;
6 use strict;
7 use IkiWiki;
8 use Text::Typography;
10 sub import { #{{{
11         IkiWiki::hook(type => "sanitize", id => "typography", call => \&sanitize);
12 } # }}}
14 sub sanitize (@) { #{{{
15         my %params=@_;
17         return Text::Typography::typography($params{content});
18 } # }}}
20 1