Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/nperez0111/bookhive. Track your books, share your shelves, see what others are reading bookhive.buzz
atproto bluesky books bookshelf goodreads management-system
Something went wrong. Try again.
12345678910111213141516171819/** * Convert HTML string to plain text, handling common tags and entities. */export function parseHtmlToText(html: string): string { if (!html || typeof html !== "string") return "";
return html .replace(/<br\s*\/?>/gi, "\n") .replace(/<[^>]*>/g, "") .replace(/ /g, " ") .replace(/&/g, "&") .replace(/</g, "<") .replace(/>/g, ">") .replace(/"/g, '"') .replace(/'/g, "'") .replace(/\n\s*\n\s*\n/g, "\n\n") .trim();}