If you develop websites using a framework, such as Django or Flask, chances are you will use one of the templating languages for the HTML files. This can be Jinja2, Django-Template, Cameleon, or any other templates. What if you want the IDE to highlight the template language's syntax to help with the development process? Some IDE allows the user to select Template language by simply right-click on the folder and specify it with the template language in question.
For VSCode, if you would like to associate the HTML files with Jinja2 template language, it is a two-step process, as explained in https://dev.to/wrrnwng/associate-html-as-jinja-files-in-vscode-npa.
Here are the steps:
Happy coding Everybody!
Eric