From 56d1935dd27e02210e30351cefcfd40b1e0a0bf6 Mon Sep 17 00:00:00 2001 From: Tom Jakubowski Date: Mon, 24 Dec 2012 04:30:42 -0600 Subject: [PATCH] Ignore tidy warning about "search" value for type attribute --- syntax_checkers/html/tidy.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/syntax_checkers/html/tidy.vim b/syntax_checkers/html/tidy.vim index f48fae78..6022e8ca 100644 --- a/syntax_checkers/html/tidy.vim +++ b/syntax_checkers/html/tidy.vim @@ -34,7 +34,8 @@ let s:ignore_html_errors = [ \ " proprietary attribute \"charset\"", \ " lacks \"content\" attribute", \ "inserting \"type\" attribute", - \ "proprietary attribute \"data-" + \ "proprietary attribute \"data-", + \ " attribute \"type\" has invalid value \"search\"" \] function! s:ValidateError(text)