Created
January 31, 2015 23:22
-
-
Save siriokun/95ff2bf93d9c37f02e31 to your computer and use it in GitHub Desktop.
Emmet Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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