Guard attributes

This commit is contained in:
mattn
2014-03-16 00:05:57 +09:00
parent 2f0bd7d02e
commit 6577e0e687

View File

@@ -34,7 +34,11 @@ function! emmet#lang#html#findTokens(str)
endif
let pos = stridx(str, token, pos) + len(token)
endwhile
return a:str[last_pos :-1]
let str = a:str[last_pos :-1]
if str =~ '^\w\+="[^"]*$'
return ''
endif
return str
endfunction
function! emmet#lang#html#parseIntoTree(abbr, type)