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
I have the following template
<div data-name="{{name}}"> {{name}} </div>
and name has the value test1 test2,
test1 test2
rendering the template give the following output:
<div data-name="test1" test2=""> test1 test2 </div>
Any idea what's the problem here?
Regards,
The text was updated successfully, but these errors were encountered:
Same here
<input name="title" type="text" placeholder="your title" value="{{title}}" data-value="{{title}}">
results in
<input type="text" placeholder="" name="title"> <div pseudo="placeholder">your title</div> <div contenteditable="plaintext-only">data-value=</div>
when parsing "", " " or null
the effect seems to concern every template var that is parsed with an empty value. it kills the quote at the end of {{title}}"
Sorry, something went wrong.
No branches or pull requests
I have the following template
and name has the value
test1 test2
,rendering the template give the following output:
Any idea what's the problem here?
Regards,
The text was updated successfully, but these errors were encountered: