Skip to content

Instantly share code, notes, and snippets.

@rmateu
Created March 3, 2016 19:37
Show Gist options
  • Save rmateu/fbc01d92891561f15ace to your computer and use it in GitHub Desktop.
Save rmateu/fbc01d92891561f15ace to your computer and use it in GitHub Desktop.
JS for Markdown Textshot Bookmarklet
(function bookmarklet() {
var url = location.origin + location.pathname,
title = document.title,
site = location.host,
site = site.replace(/^www./,''),
site = site.charAt(0).toUpperCase() + site.substr(1),
text = window.getSelection().toString(),
markdownQuote = '>' + text + ("\n\n") + '**' + title + '** '+ ("\n") + site;
window.prompt('Copy to clipboard: ⌘+C or Ctrl+C then Enter', markdownQuote);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment