Last active
November 23, 2023 00:26
-
-
Save thombashi/b4a0f2fad79a47012ede35d662515ca5 to your computer and use it in GitHub Desktop.
Bookmarklet to copy URL and title as Markdown link
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: | |
var text = document.createElement('div'); | |
text.appendChild(document.createElement('pre')).textContent = '[' + document.title + ']( ' + location.href + ' )'; | |
document.body.appendChild(text); | |
document.getSelection().selectAllChildren(text); | |
document.execCommand('copy'); | |
document.body.removeChild(text); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment