Skip to content

Instantly share code, notes, and snippets.

@siriokun
Created January 31, 2015 23:22
Show Gist options
  • Select an option

  • Save siriokun/95ff2bf93d9c37f02e31 to your computer and use it in GitHub Desktop.

Select an option

Save siriokun/95ff2bf93d9c37f02e31 to your computer and use it in GitHub Desktop.
Emmet Snippets
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Emmet Snippets</title>
</head>
<body>
<h1>Emmet Snippets</h1>
<p>Shortcut examples</p>
<ul class="snippets">
<li class="panel">
<h2>{} (Put text inside an element)</h2>
<code>
a{Link Name}
</code>
<code>
p>{Click }+a{this link}+ { to continue}
</code>
</li>
<li class="panel">
<h2>$ (Add multiple item numbering)</h2>
<code>
ul>li.item$*5
</code>
</li>
<li class="panel">
<h2>$@n (Start number at n)</h2>
<code>
ul>li.item$@3*5
</code>
</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment