Best HTML validator / parser?

I have a large HTML file and it looks like some tags are not closed. It's hard to find her. I use VIM as an editor.

Is there a good way to find it?

+4
source share
6 answers

You can check your html with http://validator.w3.org/

Just make sure you specify DOCTYPE correctly and find something that is invalid.

+5
source

I assume you are using Linux? If so, you can try Eclipse

This is a complete IDE that will help you in many cases and make programming much more efficient.

+1
source

Just use Notepad ++ . This is a free and easy code editor, and I already found a lot of private tags in my html with it ...

+1
source

HTML Validator (extension for Firefox) has helped me in the past. You need to load the page in the browser to find errors.

0
source

If you can enter the code online, you can try Dr. Watson .

0
source

Another validator for validation is the HTML Validator. Online version here: http://www.OnlineWebCheck.com/

0
source

Source: https://habr.com/ru/post/1340166/


All Articles