From c297fbebbdd679120a1f9faa5b9307395ab9d613 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Tue, 10 Mar 2015 15:58:56 +0200 Subject: [PATCH] README: update address of tidy-html5. --- README.markdown | 8 +++++--- plugin/syntastic.vim | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index de6c7fd7..24ac4ab4 100644 --- a/README.markdown +++ b/README.markdown @@ -217,8 +217,10 @@ __4.3. Q. Are there any local checkers for HTML5 that I can use with syntastic?_ [HTML Tidy][18] has a fork named [HTML Tidy for HTML5][19]. It's a drop in replacement, and syntastic can use it without changes. Just install it -somewhere and point `g:syntastic_html_tidy_exec` to its executable. - +somewhere and point `g:syntastic_html_tidy_exec` to its executable: +```vim +let g:syntastic_html_tidy_exec = 'tidy5' +``` Alternatively, you can install [vnu.jar][21] from the [validator.nu][20] project and run it as a [HTTP server][23]: ```sh @@ -431,7 +433,7 @@ a look at [jedi-vim][7], [python-mode][8], or [YouCompleteMe][9]. [16]: https://github.com/junegunn/vim-plug/ [17]: https://github.com/gmarik/Vundle.vim [18]: http://tidy.sourceforge.net/ -[19]: http://w3c.github.io/tidy-html5/ +[19]: http://www.htacg.org/tidy-html5/ [20]: http://about.validator.nu/ [21]: https://github.com/validator/validator/releases/latest [22]: https://github.com/scrooloose/syntastic/wiki/HTML%3A---validator diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 6f791259..9d24bc6c 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:_SYNTASTIC_START endif -let g:_SYNTASTIC_VERSION = '3.6.0-49' +let g:_SYNTASTIC_VERSION = '3.6.0-50' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1