chore: configure VS Code to recognize Jinja templates
All checks were successful
Build and Deploy Static Site / build (push) Successful in 56s
All checks were successful
Build and Deploy Static Site / build (push) Successful in 56s
Added a VS Code settings file to automatically associate .html files as Jinja templates. This improves syntax highlighting for users working with Jinja templating in HTML files. Helps streamline the developer experience and prevents misidentification of template files. Resolves issues with highlighting inconsistencies.
This commit is contained in:
parent
01a1a3fa33
commit
19bded9875
1 changed files with 5 additions and 0 deletions
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"files.associations": {
|
||||
"*.html": "jinja-html"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue