mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-03-14 16:04:08 +00:00
15 lines
347 B
Svelte
15 lines
347 B
Svelte
|
<script context="module">
|
||
|
import { codeToHtml } from 'shiki';
|
||
|
</script>
|
||
|
|
||
|
<script lang="ts">
|
||
|
export let lang = 'bash';
|
||
|
export let code: string;
|
||
|
</script>
|
||
|
|
||
|
{#await codeToHtml(code, { theme: 'vesper', lang, transformers: [{ pre(node) {
|
||
|
this.addClassToHast(node, 'not-prose');
|
||
|
} }] }) then highlightedCode}
|
||
|
{@html highlightedCode}
|
||
|
{/await}
|