blob: 204815b05faae248c7efbc2deb1bd2a5cca6c936 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<script lang="ts">
export let file: string | null = null
</script>
{#if file}
<section data-markdown={file} />
{:else}
<section data-markdown>
<div data-template>
<slot />
</div>
</section>
{/if}
|