I am working in react with react-css-module. In jsx, emment provides className
for .
's expansion. but now I want to expand:
anytagName.
(or anytagName,
)
to
<anyTagName styleName=''></anyTagName>
To make double quotes to single quotes, I read some doc and solve this problem.
"emmet.syntaxProfiles": {
"html": {
"attr_quotes": "single"
},
"jsx": {
"attr_quotes": "single",
"self_closing_tag": true
}
}
How can I expand something to the styleName
attribute?