For what it may be worth, I tried a couple of the Emmet abbreviations from around the Internet and they expanded happily. For instance,
! expanded to
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
</body>
</html>
#page>div.logo+ul#navigation>li*5>a{Item $} expanded to:
Code:
<div id="page">
<div class="logo"></div>
<ul id="navigation">
<li><a href="">Item 1</a></li>
<li><a href="">Item 2</a></li>
<li><a href="">Item 3</a></li>
<li><a href="">Item 4</a></li>
<li><a href="">Item 5</a></li>
</ul>
</div>
<p>lorem expanded to:
Code:
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Optio, accusamus repellat unde neque eos maiores nam, enim rerum tempore? Et cupiditate, nulla, dolorem porro inventore architecto recusandae maxime facilis voluptatem.
Reminded me of the one of the web devs I used to work with who made heavy use of Emmet to save typing.