summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/template.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-09 14:17:25 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-09 14:17:25 -0500
commit57ff2ecaeddb3e802fbec50acd7bf286941ec000 (patch)
treefaadcb090ae0085b4ed0408b1e89815ad5fb7fee /IkiWiki/Plugin/template.pm
parent5d3c225ad756708e8f3d7d0ee8872a9b274247ef (diff)
* template: Remove bogus htmlize pass added in 2.16.
* template: Htmlize template variables, but also provide a raw version via `<TMPL_VAR raw_variable>`.
Diffstat (limited to 'IkiWiki/Plugin/template.pm')
-rw-r--r--IkiWiki/Plugin/template.pm15
1 files changed, 11 insertions, 4 deletions
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