X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/5d3c225ad756708e8f3d7d0ee8872a9b274247ef..57ff2ecaeddb3e802fbec50acd7bf286941ec000:/IkiWiki/Plugin/template.pm diff --git a/IkiWiki/Plugin/template.pm b/IkiWiki/Plugin/template.pm index 27e475ae5..416762fe1 100644 --- a/IkiWiki/Plugin/template.pm +++ b/IkiWiki/Plugin/template.pm @@ -46,13 +46,20 @@ sub preprocess (@) { #{{{ } foreach my $param (keys %params) { - $template->param($param => $params{$param}); + if ($template->query(name => $param)) { + $template->param($param => + IkiWiki::htmlize($params{page}, + pagetype($pagesources{$params{page}}), + $params{$param})); + } + if ($template->query(name => "raw_$param")) { + $template->param("raw_$param" => $params{$param}); + } } - return IkiWiki::htmlize($params{page}, pagetype($pagesources{$params{page}}), - IkiWiki::preprocess($params{page}, $params{destpage}, + return IkiWiki::preprocess($params{page}, $params{destpage}, IkiWiki::filter($params{page}, $params{destpage}, - $template->output))); + $template->output)); } # }}} 1