Emmet Abbreviations in Jinja Files
July 17, 2019
Now that you've associated your html
files with jinja-html
in VSCode, you notice that your Emmet abbreviations no longer work.
That's no good for such a productive web developer, such as yourself.
Including Emmet HTML abbreviations in your jinja-html
files is just as simple! Just include the "jinja-html"
property in "emmet.includedLanguages"
object with a value of "html"
.
{
"files.associations": { "*.html": "jinja-html" },
"emmet.includeLanguages": { "jinja-html": "html" }
}