VS Code - sirdnt/quintessence GitHub Wiki
- Child >
div>p
- Class
.container.nav
->
<div className="container nav"></div>
- Id
#root
->
<div id="root"></div>
- Attribute
NavLink[id a]
->
<NavLink id="" a=""></NavLink>
- Group
.container>(p{p1})+(p{p2})
->
<div className="container">
<p>p1</p>
<p>p2</p>
</div>
- Numbering
p>strong{this index = $}*5
->
<p>
<strong>this index = 1</strong>
<strong>this index = 2</strong>
<strong>this index = 3</strong>
<strong>this index = 4</strong>
<strong>this index = 5</strong>
</p>
See more here emmet cheat-sheet