Notes
How to convert all tags and attributes to lower case with Vim
:%s/<\/\?\zs\(\a\+\)\ze[ >]/\L\1/g
:%s/\(<[^>]*\)\@<=\<\(\a*\)\ze=['"]/\L\2/g
from http://vim.wikia.com/wiki/Changing_all_HTML_tags_to_lowercase
:%s/<\/\?\zs\(\a\+\)\ze[ >]/\L\1/g
:%s/\(<[^>]*\)\@<=\<\(\a*\)\ze=['"]/\L\2/g
from http://vim.wikia.com/wiki/Changing_all_HTML_tags_to_lowercase