Quote unquoted HTML attributes
Talk0
1,599pages on
this wiki
this wiki
Tip 662 Printable Monobook Previous Next
created 2004 · complexity basic · author James Childers · version 5.7
This is a simple regex that can be used to search an HTML file and replace all unquoted attributes with their quoted version.
map <F9> :%s/\([^&^?]\)\(\<[[:alnum:]-]\{-}\)=\([[:alnum:]-#%]\+\)/\1\2="\3"/g<CR>
Comments
I use this regex and abbreviate it to "reg1".
cabbrev reg1 %s/=\([^"][^> ]\{0,40\}\)/="\1"/gc