kolibri network
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at rotfront 10 lines 322 B view raw
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>