switch to svelte markdown
This commit is contained in:
parent
6fa049504b
commit
a0b4f60e65
7 changed files with 71 additions and 41 deletions
11
src/lib/markdown/renderers/BlockQuote.svelte
Normal file
11
src/lib/markdown/renderers/BlockQuote.svelte
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<script lang="ts">
|
||||
interface Props {
|
||||
text?: string;
|
||||
}
|
||||
|
||||
const { text }: Props = $props();
|
||||
</script>
|
||||
|
||||
<blockquote class="bg-base-200 border-base-300 text-base-content rounded-lg border-l-4 p-4">
|
||||
<p class="text-gray-700">{text}</p>
|
||||
</blockquote>
|
||||
14
src/lib/markdown/renderers/Code.svelte
Normal file
14
src/lib/markdown/renderers/Code.svelte
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<script lang="ts">
|
||||
interface Props {
|
||||
lang?: string;
|
||||
text?: string;
|
||||
}
|
||||
|
||||
const { text = '' }: Props = $props();
|
||||
</script>
|
||||
|
||||
<div class="mockup-code w-full">
|
||||
{#each text.split('\n') as line, index (index)}
|
||||
<pre data-prefix={index + 1}><code>{line}</code></pre>
|
||||
{/each}
|
||||
</div>
|
||||
15
src/lib/markdown/renderers/Link.svelte
Normal file
15
src/lib/markdown/renderers/Link.svelte
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<script lang="ts">
|
||||
import type { Snippet } from 'svelte';
|
||||
|
||||
interface Props {
|
||||
children?: Snippet;
|
||||
href?: string;
|
||||
title?: string;
|
||||
}
|
||||
|
||||
const { href = '', title = '', children }: Props = $props();
|
||||
</script>
|
||||
|
||||
<a {href} {title} class="link link-primary">
|
||||
{@render children?.()}
|
||||
</a>
|
||||
Loading…
Add table
Add a link
Reference in a new issue