diff options
author | https://www.google.com/accounts/o8/id?id=AItOawnQs9icnfI79gWOQY_Yxv2XmYI3z703PrQ <misc@web> | 2011-08-06 20:10:00 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2011-08-06 20:10:00 -0400 |
commit | 79549ee8089ba9d4c981da73be1a71ecb066b5f7 (patch) | |
tree | d05a3d5a4f22e6904f0131dbea8f7e1b017ae1d1 /doc/bugs | |
parent | f4f5a2f40a2e8057cd682c0ec60978c7dad6f38b (diff) | |
download | ikiwiki-79549ee8089ba9d4c981da73be1a71ecb066b5f7.tar ikiwiki-79549ee8089ba9d4c981da73be1a71ecb066b5f7.tar.gz |
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn b/doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn new file mode 100644 index 000000000..c6efadb21 --- /dev/null +++ b/doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn @@ -0,0 +1,17 @@ +I have a part of a template that looks like: + + <TMPL_VAR level> <TMPL_VAR string> + +Calling the template with: + +\[[!template id=templateid string="some string" level="##"]] + +Results in: + + <h1 id="z-">#</h1> + + <p>some string</p> + +While I expected: + + <h2 id="some_string">some string</h2> |