Skip to content

Instantly share code, notes, and snippets.

@PEZ
Created September 15, 2021 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PEZ/676706cdea7fdd24f23d92127fd2b3e2 to your computer and use it in GitHub Desktop.
Save PEZ/676706cdea7fdd24f23d92127fd2b3e2 to your computer and use it in GitHub Desktop.
"paste-replaced.replacers": [
[ // hostname/path -> Markdown url
[".*", "[$&](https://$&)"],
],
[ // Clojure namespace -> file path segment
["\\.", "/", "g"],
["-", "_", "g"],
],
[ // Love bomb, anything -> 💪♥️♥️♥️♥️♥️♥️💪
[".", "♥️", "g"],
["♥️", "💪"],
["♥️$", "💪"],
],
],
@PEZ
Copy link
Author

PEZ commented Sep 15, 2021

Please provide your examples as comments. And don't hesitate to send PRs!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment