aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/typography.pm
blob: 682dadab7bb7cddc7c960eb9beffcef05a43f5d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

package IkiWiki::Plugin::typography;

use warnings;
use strict;
use IkiWiki;

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