Broken escaping in templating export #3381
Labels
export: template
About the custom templating exporter
Type: Bug
Issues related to software defects or unexpected behavior, which require resolution.
Milestone
Curly braces are used in the templating exporter to delimit expressions from the rest of the template text. Therefore if we want to use curly braces in the expressions they need to be escaped. According to the code, we are supposed to do this with
\{
, but that does not actually work.To Reproduce
Steps to reproduce the behavior:
This is supposed to evaluate to just
}}
for each row.Current Results
We get
{{"\}\}"}}
instead.Expected Behavior
We should get
}}
Versions
Additional context
Brought up while trying to document the templating exporter.
The text was updated successfully, but these errors were encountered: