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
{{! ... {{! ... }} ... }}
import Mustache template = Mustache.mt""" Hello. {{! Foo. {{! Bar. }} Baz.}} Goodbye. """; Mustache.render(template) |> println;
I would expect that Mustache.render(template) |> println would print out the following:
Mustache.render(template) |> println
Hello. Goodbye.
In other words, I would expect that everything inside both the "outer" comment block and the "inner" comment block would be removed.
julia> import Mustache julia> template = Mustache.mt""" Hello. {{! Foo. {{! Bar. }} Baz.}} Goodbye. """; julia> Mustache.render(template) |> println; Hello. Baz.}} Goodbye.
I tested this using Julia 1.10.5 and Mustache.jl v1.0.20 on macOS.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Minimum working example (MWE)
Expected output:
I would expect that
Mustache.render(template) |> println
would print out the following:In other words, I would expect that everything inside both the "outer" comment block and the "inner" comment block would be removed.
Actual output:
Version info
I tested this using Julia 1.10.5 and Mustache.jl v1.0.20 on macOS.
The text was updated successfully, but these errors were encountered: