diff options
-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 |