1
1
Fork 0
mirror of https://github.com/pesde-pkg/pesde.git synced 2025-03-14 16:04:08 +00:00
pesde/website/src/lib/Codeblock.svelte

15 lines
347 B
Svelte
Raw Normal View History

2024-03-16 17:28:20 +01:00
<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}