1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SublimeText3のEmmetでの宣言文を最適化する

Posted at

Windows版のEmmetプラグインの設定ファイルのパス

C:\Users\<ユーザ名>\AppData\Roaming\Sublime Text 2\Packages\Emmet\emmet\snippet.json
snippet.json
{
     "variables": {
          "lang": "ja",
          "locale": "ja-JP",
          "charset": "UTF-8",
          "indentation": "\t",
          "newline": "\n"
     },
    
//...
    
     "html": {
          "filters": "html",
          "profile": "html",
          "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} -->",
               "cc:ie6": "<!--[if lte IE 6]>\n\t${child}|\n<![endif]-->",
               "cc:ie": "<!--[if IE]>\n\t${child}|\n<![endif]-->",
               "cc:noie": "<!--[if !IE]><!-->\n\t${child}|\n<!--<![endif]-->"
          },
         
//...
}
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?