I'm trying to create some elements using Emmet in VS Code, where those elements have specific properties.
The following Emmet works correctly, and produces good output.
input[type="password"]
Expands to
<input type="password"></input>
However, if I try to give a value-less property to the element, it adds a string to it, which is sometimes incorrect.
input[required]
Expands to
<input required="required"></input>
How can I make Emmet only produce the property with no value, like this?
<input required></input>
I've had a look through the documentation for abbreviations and this particular case doesn't seem to be listed there. Does anyone have any ideas?