Forked from dixonge/VSCode-Regex-Search-Replace-Markdown-Images
Created
September 29, 2022 18:37
-
-
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.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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