aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/format.pm
blob: a219190e820a4f579a389c223a536a371e357ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/perl
package IkiWiki::Plugin::format;

use warnings;
use strict;
use IkiWiki 2.00;

sub import { #{{{
	hook(type => "preprocess", id => "format", call => \&preprocess);
} #}}}

sub preprocess (@) { #{{{
	my $format=$_[0];
	shift; shift;
	my $text=$_[0];
	shift; shift;
	my %params=@_;

	if (! defined $format || ! defined $text) {
		error(gettext("must specify format and text"));
	}
	elsif (! exists $IkiWiki::hooks{htmlize}{$format}) {
		error(sprintf(gettext("unsupported page format %s"), $format));
	}

	return IkiWiki::htmlize($params{page}, $params{destpage}, $format, $text);
} #}}}

1