]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/template.pm
add news item for ikiwiki 2.49
[ikiwiki.git] / IkiWiki / Plugin / template.pm
index c87ba51029434acca2d3dd94ffd9389cec8e1231..a6e34fcc9935546fca9cf0bbf136abee3887af42 100644 (file)
@@ -46,7 +46,15 @@ sub preprocess (@) { #{{{
        }
 
        foreach my $param (keys %params) {
-               $template->param($param => $params{$param});
+               if ($template->query(name => $param)) {
+                       $template->param($param =>
+                               IkiWiki::htmlize($params{page}, $params{destpage},
+                                       pagetype($pagesources{$params{page}}),
+                                       $params{$param}));
+               }
+               if ($template->query(name => "raw_$param")) {
+                       $template->param("raw_$param" => $params{$param});
+               }
        }
 
        return IkiWiki::preprocess($params{page}, $params{destpage},