Skip to content

Instantly share code, notes, and snippets.

@dixonge
Last active March 23, 2023 01:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dixonge/2b22666d43e39c49239171af124aa98e to your computer and use it in GitHub Desktop.
Save dixonge/2b22666d43e39c49239171af124aa98e 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