By default, when I expand an html tag with an attribute, the attribute's value gets surrounded by quotes.
I'm trying to remove the quotes generated by Emmet around the props.onClick value for custom attribute onClick.
My input (then TAB to expand):
button[onClick={props.onClick}]
Emmet's output:
<button onClick="props.onClick"></button>
What I expect (props... WITHOUT quotes):
<button onClick={props.onClick}></button>
Whereas, I want to have to specify when the expanded version wrapping with quotes.
Either rapping it around double brackets doesn't work. Is that possible with vscode.emmet?
By default, when I expand an html tag with an attribute, the attribute's value gets surrounded by quotes.
I'm trying to remove the quotes generated by Emmet around the props.onClick value for custom attribute onClick.
My input (then TAB to expand):
button[onClick={props.onClick}]Emmet's output:
<button onClick="props.onClick"></button>What I expect (props... WITHOUT quotes):
<button onClick={props.onClick}></button>Whereas, I want to have to specify when the expanded version wrapping with quotes.
Either rapping it around double brackets doesn't work. Is that possible with vscode.emmet?