We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
There seems to be an issue with indentation when the depth of nested partials.
For example:
test.mustache
indent {{>tpl_inner}}
tpl_inner.mustache
{{var}} next line1 {{>tpl_inner2}}
tpl_inner2.mustache
{{var}} next line2
result:
indent value next line1 value next line2
ruby implementation result
The text was updated successfully, but these errors were encountered:
Is this normal?
{{var}} next line1 {{#onetothree}}{{.}}{{/onetothree}}
result
indent value next line1 1 2 3
indent x {{>tpl_inner}}
indent x value next line1 123
Sorry, something went wrong.
No branches or pull requests
Hi,
There seems to be an issue with indentation when the depth of nested partials.
For example:
test.mustache
tpl_inner.mustache
tpl_inner2.mustache
result:
ruby implementation result
The text was updated successfully, but these errors were encountered: