Skip to content

Instantly share code, notes, and snippets.

@chriskempson
Last active October 25, 2023 00:27
Show Gist options
  • Save chriskempson/db80633512a1236fd5d3aad3f59a12af to your computer and use it in GitHub Desktop.
Save chriskempson/db80633512a1236fd5d3aad3f59a12af to your computer and use it in GitHub Desktop.
VS Code - Strip Attributes from HTML Tags
# Couldn't figure out how to do /s or get VS Code to search over newlines so came up with this convoluted mess '[\S\s]*?\n?' that matches all characters plus newlines
Search for: <(table|tr|td|p|div|span)[\S\s]*?\n?>
Replace with: <$1>
@dedenhabibi
Copy link

you saved my hope in my project!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment