diff options
author | flyingleafe <flyingleafe@gmail.com> | 2014-08-05 14:03:16 +0600 |
---|---|---|
committer | flyingleafe <flyingleafe@gmail.com> | 2014-08-05 14:03:16 +0600 |
commit | 928648a15433c866931919670558d656b9f32563 (patch) | |
tree | fddb7e1d251166518ff176435457f3e1389471ab /conf/preferences.json | |
parent | fdfa4d71fe42f6410e0617b46ec5de2935d14a5e (diff) | |
download | emmet-mode-928648a15433c866931919670558d656b9f32563.tar.lz emmet-mode-928648a15433c866931919670558d656b9f32563.tar.xz emmet-mode-928648a15433c866931919670558d656b9f32563.zip |
Fixing improper behavior of block tags
Diffstat (limited to 'conf/preferences.json')
-rw-r--r-- | conf/preferences.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/preferences.json b/conf/preferences.json index 5cb84f7..5e76145 100644 --- a/conf/preferences.json +++ b/conf/preferences.json @@ -35,7 +35,7 @@ "dfn": {"block": false, "selfClosing": false}, "dialog": {"block": false, "selfClosing": false}, "dir": {"block": true, "selfClosing": false}, - "div": {"block": false, "selfClosing": false}, + "div": {"block": true, "selfClosing": false}, "dl": {"block": true, "selfClosing": false}, "dt": {"block": false, "selfClosing": false}, "em": {"block": false, "selfClosing": false}, @@ -83,7 +83,7 @@ "optgroup": {"block": true, "selfClosing": false}, "option": {"block": false, "selfClosing": false, "defaultAttr": {"value": ""}}, "output": {"block": false, "selfClosing": false}, - "p": {"block": false, "selfClosing": false}, + "p": {"block": true, "selfClosing": false}, "param": {"block": false, "selfClosing": true, "defaultAttr": {"name": "", "value": ""}}, "pre": {"block": true, "selfClosing": false}, "progress": {"block": false, "selfClosing": false}, |