Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cdsaenz/d4b65ba9fa9bcd39487011585ad97184 to your computer and use it in GitHub Desktop.
Save cdsaenz/d4b65ba9fa9bcd39487011585ad97184 to your computer and use it in GitHub Desktop.
Regex to find markdown images and replace with img tag in VS Code (or template engine shortcode, etc.)
Find: !\[(.*?)\]\((.*?)\)
Replace: <img alt="$1" src="$2">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment