diff options
Diffstat (limited to 'src/html-abbrev.el')
-rw-r--r-- | src/html-abbrev.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/html-abbrev.el b/src/html-abbrev.el index 6686bea..ad53474 100644 --- a/src/html-abbrev.el +++ b/src/html-abbrev.el @@ -572,7 +572,8 @@ (block-indentation? (or content-multiline? (and block-tag? content))) (lf (if block-indentation? "\n"))) (concat "<" tag-name id classes props - (if self-closing? "/>" + (if self-closing? + (concat emmet-self-closing-tag-style ">") (concat ">" (if tag-txt (if block-indentation? |