mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-07 23:55:46 +00:00
13 lines
362 B
Svelte
13 lines
362 B
Svelte
<script lang="ts">
|
|
import type { EntitySnippet } from '$lib/api';
|
|
|
|
export let snippet: EntitySnippet;
|
|
</script>
|
|
|
|
{#each snippet.fragments as fragment}
|
|
{#if fragment.kind == 'normal'}
|
|
{fragment.text}
|
|
{:else if fragment.kind == 'link'}
|
|
{' '}<a href={fragment.href} class="hover:underline">{fragment.text.replaceAll('*', '•')}</a>
|
|
{/if}
|
|
{/each}
|