mirror of
https://github.com/ivabus/gui
synced 2025-06-08 00:00:27 +03:00

* #213 web preview and cleanup native api integration * remove old tauri build implementation * fix git path --------- Co-authored-by: neil <neil@neils-MacBook-Pro.local>
16 lines
293 B
Svelte
16 lines
293 B
Svelte
<script lang="ts">
|
|
import SvelteMarkdown from "svelte-markdown";
|
|
import Link from "./link.svelte";
|
|
|
|
import "./styles.css";
|
|
|
|
export let source: string;
|
|
|
|
const renderers = {
|
|
link: Link
|
|
};
|
|
</script>
|
|
|
|
<section class="markdown-body p-4">
|
|
<SvelteMarkdown {source} {renderers} />
|
|
</section>
|