]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn
Merge branch 'master' of ssh://git.ikiwiki.info
[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>