Merge pull request #432 from tomjakubowski/master

Ignore tidy warning about <input> tags with type="search"
This commit is contained in:
Martin Grenfell 2013-01-02 04:55:05 -08:00
commit 7e0ac094aa

View File

@ -34,7 +34,8 @@ let s:ignore_html_errors = [
\ "<meta> proprietary attribute \"charset\"",
\ "<meta> lacks \"content\" attribute",
\ "inserting \"type\" attribute",
\ "proprietary attribute \"data-"
\ "proprietary attribute \"data-",
\ "<input> attribute \"type\" has invalid value \"search\""
\]
function! s:ValidateError(text)