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
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