Last active
June 27, 2017 01:21
-
-
Save ondrajz/444d7fc42898d98a2ad6ce67d1260083 to your computer and use it in GitHub Desktop.
Links to Github repos with stars
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
# Regular expression to replace list of links | |
find: `* [NAME](https://github.com/USER/REPO)` | |
``` | |
\* \[([^\!][^\]]*)\]\((https?\:\/\/github\.com\/([^\/]+\/[^\/\)]+)\/?[^\)]*)\) | |
``` | |
replace with: `* [](LINK)` | |
``` | |
* [$1](https://github.com/$2) [](https://github.com/$3) | |
``` | |
[regex101.com](https://regex101.com/r/LtlLj1/1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment