Skip to content

Instantly share code, notes, and snippets.

@II-H
II-H / js
Created September 9, 2025 14:53
Notenik Quote-From Bookmarklet
javascript:(function(){
function escapeMarkdown(text) {
return text.replace(/^/gm, '> ').replace(/`/g, '\\`');
}
function extractAuthor() {
// Try various meta tags for author
const authorMeta = document.querySelector('meta[name="author"], meta[property="article:author"], meta[name="twitter:creator"], meta[property="og:article:author"]');
if (authorMeta && authorMeta.content) {
return authorMeta.content.trim();