diff --git a/src/data.ts b/src/data.ts index 76e58ee..884aff5 100644 --- a/src/data.ts +++ b/src/data.ts @@ -7,6 +7,6 @@ export const htmlData = { "body", "head", "html", "address", "blockquote", "dd", "div", "section", "article", "aside", "header", "footer", "nav", "menu", "dl", "dt", "fieldset", "form", "frame", "frameset", "h1", "h2", "h3", "h4", "h5", "h6", "iframe", "noframes", "object", "ol", "p", "ul", "applet", "center", "dir", "hr", "pre", "a", "abbr", "acronym", "area", "b", "base", "basefont", "bdo", "big", "br", "button", "caption", "cite", "code", "col", "colgroup", "del", "dfn", "em", "font", "i", "img", "input", "ins", "isindex", "kbd", "label", "legend", "li", "link", "map", "meta", "noscript", "optgroup", "option", "param", "q", "s", "samp", "script", "select", "small", "span", "strike", "strong", "style", "sub", "sup", "table", "tbody", "td", "textarea", "tfoot", "th", "thead", "title", "tr", "tt", "u", "var", - "canvas", "main", "figure", "plaintext", "figcaption" + "canvas", "main", "figure", "plaintext", "figcaption", "hgroup" ] } \ No newline at end of file diff --git a/src/test/expand.test.ts b/src/test/expand.test.ts index e9ee65c..11ead93 100644 --- a/src/test/expand.test.ts +++ b/src/test/expand.test.ts @@ -143,6 +143,9 @@ describe('Expand Abbreviations', () => { // `output.reverseAttributes` emmet option testExpand('html', 'a.dropdown-item[href=#]{foo}', 'foo', { "output.reverseAttributes": false }); testExpand('html', 'a.dropdown-item[href=#]{foo}', 'foo', { "output.reverseAttributes": true }); + + // https://github.com/microsoft/vscode/issues/117154 + testExpandWithCompletion('html', 'hgroup', '
${0}
'); }); describe('Wrap Abbreviations (basic)', () => {