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
<div> {#if value} <input/> {#end} </div>
The above results in Unclosed macro at #if
Unclosed macro
#if
<div {#if value} style="" {#end} />
The above results in unexpected { at {#if
unexpected {
{#if
<if ${#if value true #else false #end}> ... </if>
The text was updated successfully, but these errors were encountered:
I thought the following will work with inline markup, but it doesn't
<div> {#if value <input/> #end} </div>
Failing with Invalid expression
Invalid expression
Sorry, something went wrong.
Oh. That actually should compile, since hxx will pass the whole #if value <input/> #end to Context.parseInlineString.
#if value <input/> #end
Context.parseInlineString
No branches or pull requests
Conditional Element
The above results in
Unclosed macro
at#if
Conditional Attribute
The above results in
unexpected {
at{#if
Current workaround
The text was updated successfully, but these errors were encountered: