Created
September 15, 2021 16:29
-
-
Save PEZ/676706cdea7fdd24f23d92127fd2b3e2 to your computer and use it in GitHub Desktop.
Some examples of how to use this VS Code extension: https://marketplace.visualstudio.com/items?itemName=betterthantomorrow.paste-replaced
This file contains 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
"paste-replaced.replacers": [ | |
[ // hostname/path -> Markdown url | |
[".*", "[$&](https://$&)"], | |
], | |
[ // Clojure namespace -> file path segment | |
["\\.", "/", "g"], | |
["-", "_", "g"], | |
], | |
[ // Love bomb, anything -> 💪♥️♥️♥️♥️♥️♥️💪 | |
[".", "♥️", "g"], | |
["♥️", "💪"], | |
["♥️$", "💪"], | |
], | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please provide your examples as comments. And don't hesitate to send PRs!