]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn
ikiwiki (3.20130711) unstable; urgency=low
[git.ikiwiki.info.git] / doc / bugs / Template_variable_not_passed_as-is__63____33__.mdwn
1 I have a part of a template that looks like:
3     <TMPL_VAR level> <TMPL_VAR string>
5 Calling the template with:
7 \[[!template id=templateid string="some string" level="##"]]
9 Results in:
11     <h1 id="z-">#</h1>
13     <p>some string</p>
15 While I expected:
17     <h2 id="some_string">some string</h2>
19 >> Have you tried TMPL_VAR raw_level, raw_string?  — [[Jon]]
21 > Thanks. I should read the docs more closely the next time.
23 [[not a bug|done]]