mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-03-13 23:44:29 +00:00
14 lines
347 B
Svelte
14 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}
|