How can I validate that all tags have been closed in emacs?

<div>
hi
<div id="2">
hello
<div>

The above being a very simple example of a missing div. How can i see in emacs which html tag is missing?

link|improve this question

80% accept rate
Nxhtml? – Tom Dec 23 '11 at 16:08
feedback

1 Answer

up vote 3 down vote accepted

If it is XHTML, nxml-mode can validate it automatically. That's what I am using. (I.e. I switch to nxml-mode for validation, though I usually use html-mode.)

link|improve this answer
so how do i know, in case i load a pre written html file? – user993563 Dec 23 '11 at 20:19
I don't understand your question, know what? All you have to do to make the validation work is open the file in the buffer and switch to nxml-mode (i.e. M-x nxml-mode). Then nxml-mode will display the next error in the minibuffer, you can jump there with C-c C-n. Actually the validation is done by the minor mode rng-validate-mode, it can be toggled with C-c C-v. – Rörd Dec 23 '11 at 20:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.