"use strict"; import { unescapeHtml } from "../utils.js"; function handleH1(content: string, title: string) { let isFirstH1Handled = false; return content.replace(/]*>([^<]*)<\/h1>/gi, (match, text) => { text = unescapeHtml(text); const convertedContent = `

${text}

`; // strip away very first found h1 tag, if it matches the title if (!isFirstH1Handled) { isFirstH1Handled = true; return title.trim() === text.trim() ? "" : convertedContent; } return convertedContent; }); } function extractHtmlTitle(content: string): string | null { const titleMatch = content.match(/]*>([^<]+)<\/title>/i); return titleMatch ? titleMatch[1].trim() : null; } export default { handleH1, extractHtmlTitle };