-
-
Save git2358/cb6ae5fde0810bc8b16b76593523f8de to your computer and use it in GitHub Desktop.
Bookmarklet for markdown link of current page
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
| javascript:(function () { | |
| var selection = window.getSelection().toString(); | |
| var anchor = selection ? selection : document.title; | |
| void(prompt('', '[' + anchor + '](' + location.href + ')')); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment