diff options
author | smihica <smihica@gmail.com> | 2013-01-02 18:55:35 +0900 |
---|---|---|
committer | smihica <smihica@gmail.com> | 2013-01-02 18:55:35 +0900 |
commit | 05b9826295d902ed00d0971437e5d5de76fb7d9b (patch) | |
tree | 0c3a47b407ede05f3db6133078446cdd202d737c /zencoding-mode.el | |
parent | f9d3143a20200ac11b6c6a98e179a3875f957bb2 (diff) | |
download | emmet-mode-05b9826295d902ed00d0971437e5d5de76fb7d9b.tar.lz emmet-mode-05b9826295d902ed00d0971437e5d5de76fb7d9b.tar.xz emmet-mode-05b9826295d902ed00d0971437e5d5de76fb7d9b.zip |
Added html5 tags.
Diffstat (limited to 'zencoding-mode.el')
-rw-r--r-- | zencoding-mode.el | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/zencoding-mode.el b/zencoding-mode.el index 318ea7b..218d738 100644 --- a/zencoding-mode.el +++ b/zencoding-mode.el @@ -404,15 +404,41 @@ "q" "span" "strong" - "var")) + "var" + "textarea" + "small" + "time" "del" "ins" + "sub" + "sup" + "i" "s" "b" + "ruby" "rt" "rp" + "bdo" + "iframe" "canvas" + "audio" "video" + "ovject" "embed" + "map")) (defvar zencoding-block-tags - '("p")) + '("p" + "article" + "section" + "aside" + "nav" + "figure" + "address" + "header" + "footer")) (defvar zencoding-self-closing-tags '("br" "img" - "input")) + "input" + "wbr" + "object" + "source" + "area" + "param" + "option")) (defvar zencoding-leaf-function nil "Function to execute when expanding a leaf node in the |