aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn')
-rw-r--r--doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn23
1 files changed, 23 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..d70dff418
--- /dev/null
+++ b/doc/bugs/Template_variable_not_passed_as-is__63____33__.mdwn
@@ -0,0 +1,23 @@
+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>
+
+>> Have you tried TMPL_VAR raw_level, raw_string? — [[Jon]]
+
+> Thanks. I should read the docs more closely the next time.
+
+[[not a bug|done]]