data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

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

fix: outgoing link should always have squiggy and underline regardless of prose

dusk 1aa91543 a90bf505

+1 -1
+1 -1
src/components/note.svelte
··· 61 61 {#if note.hasQuote}<Token v="-contains quote-" keywd small/>{/if} 62 62 {#each note.outgoingLinks ?? [] as {name, link}} 63 63 {@const color = outgoingLinkColors[name]} 64 - <span class="text-sm"><Token v="(" punct/><a style="color: {color};{getTextShadowStyle(color)}" href={getOutgoingLink(name, link)}>{name}</a><Token v=")" punct/></span> 64 + <span class="text-sm"><Token v="(" punct/><a class="hover:motion-safe:animate-squiggle hover:underline" style="color: {color};{getTextShadowStyle(color)}" href={getOutgoingLink(name, link)}>{name}</a><Token v=")" punct/></span> 65 65 {/each} 66 66 </div>