# How To Change HTML Default Format From Nunjucks To HTML5 In VSCode

Hello Fellow Codenewbies 👋

One day I followed a tutorial to create an `index.html` file and saved it in *Nunjucks* format.
<br>
I honestly don't remember if I changed anything in `settings.json` when I followed along with the tutorial.

To cut the story short, since then every time I create an HTML file, by default, it would automatically be in *Nunjucks* format.
![1.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611441649905/iq5aXXsFB.jpeg)

## In Search For Solution

As I normally do, I googled to find solutions.
<br>
And I found [the only solution](https://stackoverflow.com/questions/53292816/formatting-html-with-nunjucks-extension-installed#59057037) out there.
<br>
It's written here that:

>You can switch back to HTML by clicking on the word "Nunjucks" in VS Code's status bar.

Also,

> ... This "Language Indicator" is near the bottom-right of VS Code's window.

## Try Out The Solution

I got back to my VSCode, and this was how it showed.
![2.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611441466052/OWAQrZtEl.jpeg)

The *Nunjucks* indicator was not on the right, but on the **left** of the Status Bar.
<br>
I thought, "Okay. Maybe there was a typo in the solution."
<br>
So I clicked it and it directed me to this tab.
![3.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611441562521/k8r8xI_At.jpeg)


As you can see, **by default the HTML is already enabled, while *Nunjucks* is disabled!**
<br>
What's going on then?

I searched if any setting for HTML was changed in the `settings.json` file.
<br>
None. I don't see any change.

I also searched by keyword "nunjucks" in the file.
<br>
And I only got these lines of *Nunjucks* in my setting, which assured me that *Nunjucks* is not set as the default format for HTML.
![10.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611444214279/9n8leKfXq.jpeg)

Great!
<br>
I successfully pulled my hair at this point.
<br>
I was thinking to either reinstall the VSCode or reset the whole settings. 

The solution gives a link to [the official documentation](https://code.visualstudio.com/docs/languages/overview#_changing-the-language-for-the-selected-file) from VSCode.
<br>
It's written there:

> ... the language indicator - which is located on the **right hand** of the Status Bar.

So the language indicator ***is*** on the right side of the Status Bar. It wasn't a typo.
<br>
But there is *nothing* on the right side.

"Let's try one more time before I reinstall VSCode or reset the whole settings", I said to myself.

I deleted the HTML file and created a new one.
<br>
This time, while the file was still opened, I finally see "HTML Nunjucks" on the right side!

![4.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611412321854/DKKHDZ3g_.jpeg)

I clicked it and it gives me a dropdown menu.
<br>
"HTML Nunjucks (nunjucks)" is the configured language.
![5.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611441789292/wSBa08BHd.jpeg)

So I selected the HTML and *voilà*! 
![6.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611441975681/E_gsNN3dv.jpeg)

It changes the *Nunjucks* into *HTML5* format! 🎉

Next, I created a `post.html` file.
<br>
But wait... 
<br>
Why it gets back to the *Nunjucks* format?
![7.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611442075499/OIq2HyvyV.jpeg)

Apparently, with this solution, I need to do the whole step every time I create a new HTML file 😓.

## Final Solution

Confused, I decided to do a trial and error.
<br>
Nothing to lose. I will definitely reinstall VSCode or reset my whole settings if this one failed.

Again, I clicked the language indicator.
<br>
When it shows the dropdown, I selected the "Configure File Association for '.html'...".
![8.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611442128188/SvO0CsfnH.jpeg)

And I chose HTML.
![9.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611442172527/qvif3mnV1.jpeg)

I created another file called `about.html`.
<br>
And yes!
![10.jpg](https://cdn.hashnode.com/res/hashnode/image/upload/v1611442300476/cSB7Oml3e.jpeg)

Now it goes with *HTML5* format by default! 🎉🎉🎉

## Conclusion
To change the default HTML format from *Nunjucks* to *HTML5* in VSCode:
1. Open the "HTML Nunjucks" file.
2. Click the language indicator that says "HTML Nunjucks" on the right side of the Status Bar.
3. Select "Configure File Association for '.html'...".
4. Select HTML

---
**Author's Note:**
<br>
*Thank you, Surayya, for being there with your patience while I pulled my hair and did 1001 facial expressions* 😄.





