2 # Structured template plugin.
3 package IkiWiki::Plugin::template;
11 hook(type => "getsetup", id => "template", call => \&getsetup);
12 hook(type => "preprocess", id => "template", call => \&preprocess,
28 # This needs to run even in scan mode, in order to process
29 # links and other metadata included via the template.
30 my $scan=! defined wantarray;
32 if (! exists $params{id}) {
33 error gettext("missing id parameter")
36 # The bare id is used, so a page templates/$id can be used as
40 $template=template_depends($params{id}, $params{page},
44 error sprintf(gettext("failed to process template %s"),
45 htmllink($params{page}, $params{destpage},
46 "/templates/$params{id}"))." $@";
49 $params{basename}=IkiWiki::basename($params{page});
51 foreach my $param (keys %params) {
52 my $value=IkiWiki::preprocess($params{page}, $params{destpage},
53 $params{$param}, $scan);
54 if ($template->query(name => $param)) {
55 my $htmlvalue=IkiWiki::htmlize($params{page}, $params{destpage},
56 pagetype($pagesources{$params{page}}),
59 $template->param($param => $htmlvalue);
61 if ($template->query(name => "raw_$param")) {
63 $template->param("raw_$param" => $value);
67 return IkiWiki::preprocess($params{page}, $params{destpage},
68 $template->output, $scan);