Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save karlhorky/bd4bb6264479882fa2d45981851dc55a to your computer and use it in GitHub Desktop.
Save karlhorky/bd4bb6264479882fa2d45981851dc55a to your computer and use it in GitHub Desktop.
Regular expression: Change Markdown reference links to inline

This regex will allow search and replace to change Markdown links using references (matching ][...] pattern) to inline links.

It will leave the document otherwise untouched.

Search:

\]\[([^\]]+)\]([\s\S]+\1\]: (http.+))$

Replace:

]($3)$2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment