Skip to content

Instantly share code, notes, and snippets.

@albach
Created January 17, 2018 11:29
Show Gist options
  • Save albach/5196b7a83e72d4423bbfe85a736d86c5 to your computer and use it in GitHub Desktop.
Save albach/5196b7a83e72d4423bbfe85a736d86c5 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Emmet</title>
</head>
<body>
<!-- The * operator will act as a multiplier -->
<!-- ol*2 -->
<ol></ol>
<ol></ol>
<!-- The + operator will create siblings (same level) -->
<!-- ol+ol -->
<ol></ol>
<ol></ol>
<!-- ol>li*2 -->
<ol>
<li></li>
<li></li>
</ol>
<!-- ol>li+li -->
<ol>
<li></li>
<li></li>
</ol>
<!-- ol>li+li>ul>li*8 -->
<ol>
<li></li>
<li>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment