Skip to content

Instantly share code, notes, and snippets.

@adityadaniel
Last active December 7, 2024 18:39
Show Gist options
  • Save adityadaniel/f7a182fc5a48665c2f01afb4a1a852b4 to your computer and use it in GitHub Desktop.
Save adityadaniel/f7a182fc5a48665c2f01afb4a1a852b4 to your computer and use it in GitHub Desktop.
Bookmarklet to turn web page into Markdown using Jina AI.
javascript:(function(){
const currentUrl = window.location.href;
const modifiedUrl = `https://r.jina.ai/${currentUrl}`;
window.location.href = modifiedUrl;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment