How do I modify Emmet's tab expansion content?
Default:
input div.header
and then pressing tab will generate <div className = "header"> </ div>
What I want:
input div.header
and then pressing tab will generate <div className = {cx ("header")}> </ div>
However,not only div
, it maybe span
or h1
or img
and so on, still it maybe nested.
example:
div.header>div.title>span.icon
===>
<div className = {cx ("header")}>
<div className = {cx ("title")}>
<span className = {cx ("icon")}> </ span>
</ div>
</ div>```