You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 29, 2026. It is now read-only.
@@ -407,7 +389,7 @@ export async function fileTree(
407
389
metadata.push(
408
390
...frontmatter
409
391
.map((field)=>[field,fm[field]])
410
-
.filter(([_,v])=>v!==undefined)
392
+
.filter(([,v])=>v!==undefined)
411
393
.map(([k,v])=>`${k}: ${JSON.stringify(v)}`),
412
394
);
413
395
}
@@ -450,54 +432,3 @@ export async function fileTree(
450
432
}
451
433
}
452
434
453
-
/**
454
-
* Injects @mozilla/readability into a page to extract structured data from an article.
455
-
* This function evaluates the page content using the Readability library to parse and extract details such as title, content, text, and metadata.
456
-
*
457
-
* @param page - The browser page instance to evaluate and extract content from.
458
-
* @returns An object containing the parsed article details, including title, content, text content, length, excerpt, byline, direction, site name, language, and published time, or null if parsing fails.
0 commit comments