Django HTML Extension with Issue & Solution

less than 1 minute read

Django VScode Extension

While I work with django-html files, everytime I had to type curly brackets and percentage sign.
I found most popular django html extension at VScode, but I keeps me bothering not allowing h2, h3 tags, and etc.

Thus, I went to the publisher’s git repository, and found the solution in Issue category.

Solution

Go to Settings by

ctrl+,
  • Type β€˜emmet.includeLanguages’
  • Press Add item
  • Fill out Key and Value with:
    • key: django-html
    • value: html

Happy Coding πŸ‘

ref:

django-html: https://github.com/vscode-django/vscode-django/issues/50

Leave a comment