Skip to content

Instantly share code, notes, and snippets.

@ttscoff
Created November 6, 2014 17:18
Show Gist options
  • Save ttscoff/dbf4737b04e1635e1d20 to your computer and use it in GitHub Desktop.
Save ttscoff/dbf4737b04e1635e1d20 to your computer and use it in GitHub Desktop.
Regex for Markdown images
@"(?:\\(|:\\s+)(?!http)([^\\s]+\\.(?:jpe?g|gif|png|svg|pdf))"
# matches local images:
# matches "(image.png)"
# matches "]: image.png"
# does not match remote images (http*)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment