plugin tab

This commit is contained in:
Jan Prochazka
2021-03-20 09:40:30 +01:00
parent c77bc820d4
commit bb0f5e4404
7 changed files with 132 additions and 14 deletions

View File

@@ -0,0 +1,8 @@
<script>
import SvelteMarkdown from 'svelte-markdown';
import Link from './Link.svelte';
export let source;
</script>
<SvelteMarkdown {source} renderers={{ link: Link }} />