--- import { extract } from "@extractus/article-extractor"; import AddressBar from "../components/address-bar.astro"; import Post from "../components/post.astro"; import Layout from "../layouts/layout.astro"; const params = Astro.url.searchParams; const url = params.get('url') || ''; let article; try { article = await extract(url); } catch { article = { title: "Something is not right", content: "
The article extractor did not get any result.
", }; } ---