Skip to content

Instantly share code, notes, and snippets.

@punchagan
Created June 11, 2016 13:25
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 punchagan/f561e47cacc91869d933f0dffa39c0bb to your computer and use it in GitHub Desktop.
Save punchagan/f561e47cacc91869d933f0dffa39c0bb to your computer and use it in GitHub Desktop.
Elfeed org-capture bookmarklet
javascript:(function(){
var url_element =
document.querySelector('link[type="application/rss+xml"]') ||
document.querySelector('link[type="application/atom+xml"]') ||
location;
var url = url_element.href;
location.href = 'org-protocol://capture://L/'+
encodeURIComponent(url)+'/'+
encodeURIComponent(document.title);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment