Reverted all changes back to version 677d7fdb53

This commit is contained in:
[dyad]
2026-01-20 13:46:57 +01:00
parent cade4009dc
commit cbd7f55d92
3 changed files with 0 additions and 67 deletions

View File

@@ -41,7 +41,6 @@ export async function extractMetaData(url: string) {
$('meta[name="description"]').attr("content") ||
"No description found";
const image = $('meta[property="og:image"]').attr("content") || null;
const h1 = $('h1').first().text().trim() || "No H1 found";
const faqData: FaqItem[] = [];
$('script[type="application/ld+json"]').each((i, el) => {
@@ -79,7 +78,6 @@ export async function extractMetaData(url: string) {
title,
description,
image,
h1,
faq: faqData.length > 0 ? faqData : null,
},
};