I am trying to get jshint to work within Syntastic (gvim). The Syntastic wiki says it can be used for html validation. I added following line to my vimrc.
let g:syntastic_html_checkers = ['jshint']
Available and currently enable checker: jshint is detected.
Now when I try to edit a html file no errors are given.
When I try to use the w3 validation instead:
let g:syntastic_html_checkers = ['w3']
I get an abnormal error 26.
Can somebody help me? The official readme is confusing and I cannot find much other sources.