feat: add xml preview

This commit is contained in:
Nybkox
2025-02-11 16:51:39 +01:00
parent 7b68dd0f47
commit aa8dfa1c87
7 changed files with 296 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<script lang="ts">
import XmlHighlighter from './XmlHighlighter.svelte';
export let selection;
</script>
{#each selection as cell}
<XmlHighlighter code={cell.value} />
{/each}