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 found little issue with input arrays in HTML, ex. <input name="foo[]">
<input name="foo[]">
Emmet skips closing bracket in attributes (in this case - name): input[name=foo[]] => <input type="text" name="foo[">
name
input[name=foo[]]
<input type="text" name="foo[">
input[name=foo[0]] => <input type="text" name="foo[0">
input[name=foo[0]]
<input type="text" name="foo[0">
input[name=foo[{id}]][value={id}] => <input type="text" name="foo[{id}" value="{id}">
input[name=foo[{id}]][value={id}]
<input type="text" name="foo[{id}" value="{id}">
The text was updated successfully, but these errors were encountered:
You should use quotes in this case: input[name='foo[]']
input[name='foo[]']
Sorry, something went wrong.
Sound like a workaround. I can't see any purpose for parsing nested brackets here, so IMO it's a bug.
No branches or pull requests
I found little issue with input arrays in HTML, ex.
<input name="foo[]">
Emmet skips closing bracket in attributes (in this case -
name
):input[name=foo[]]
=><input type="text" name="foo[">
input[name=foo[0]]
=><input type="text" name="foo[0">
input[name=foo[{id}]][value={id}]
=><input type="text" name="foo[{id}" value="{id}">
The text was updated successfully, but these errors were encountered: