Skip to content

Instantly share code, notes, and snippets.

@2no
Last active December 14, 2015 16:19
Show Gist options
  • Save 2no/5114113 to your computer and use it in GitHub Desktop.
Save 2no/5114113 to your computer and use it in GitHub Desktop.
ST2 の Emmet ライクなスニペット
let g:user_emmet_settings = {
\ 'html' : {
\ 'expandos' : {
\ '!' : 'html:5'
\ },
\ 'snippets' : {
\ '!!' : "<!doctype html>",
\ '!!!4t' : "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">",
\ '!!!4s' : "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">",
\ '!!!xt' : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">",
\ '!!!xs' : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">",
\ '!!!xxs' : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">",
\ 'c' : "<!-- |${child} -->",
\ }
\ }
\}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment