Skip to content

Instantly share code, notes, and snippets.

@matthewhartman
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewhartman/c197ae351431c0e4821a to your computer and use it in GitHub Desktop.
Save matthewhartman/c197ae351431c0e4821a to your computer and use it in GitHub Desktop.
VIM - Changing all HTML tags to lowercase (including attributes)
# Convert all HTML tags and attributes (excluding text) to lowercase
# Thanks to http://vim.wikia.com/wiki/Changing_all_HTML_tags_to_lowercase
:%s/<\([^>]*\)>/<\L\1>/g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment