kolibri network
1---
2const { href, ...rest } = Astro.props;
3const slot = await Astro.slots.render("default");
4const text = slot.replace(/<[^>]*>/g, "").trim();
5const resolvedHref = href ?? (text.includes("://") ? text : `https://${text}`);
6---
7
8<a href={resolvedHref} target="_blank" rel="noopener noreferrer" {...rest}
9 ><slot /></a
10>