open-webui/src/lib/components/chat/Messages/MarkdownInlineTokens.svelte

52 lines
1.5 KiB
Svelte
Raw Normal View History

<script lang="ts">
import DOMPurify from 'dompurify';
import type { Token } from 'marked';
2024-08-08 22:01:38 +00:00
import { revertSanitizedResponseContent, unescapeHtml } from '$lib/utils';
2024-08-08 18:46:39 +00:00
import { onMount } from 'svelte';
import Image from '$lib/components/common/Image.svelte';
2024-08-08 22:01:38 +00:00
import KatexRenderer from './KatexRenderer.svelte';
export let id: string;
export let tokens: Token[];
</script>
{#each tokens as token}
{#if token.type === 'escape'}
{unescapeHtml(token.text)}
{:else if token.type === 'html'}
{@const html = DOMPurify.sanitize(token.text)}
{#if html}
{@html html}
{:else}
{token.text}
{/if}
{:else if token.type === 'link'}
<a href={token.href} target="_blank" rel="nofollow" title={token.title}>{token.text}</a>
{:else if token.type === 'image'}
<Image src={token.href} alt={token.text} />
{:else if token.type === 'strong'}
<strong>
<svelte:self id={`${id}-strong`} tokens={token.tokens} />
</strong>
{:else if token.type === 'em'}
<em>
<svelte:self id={`${id}-em`} tokens={token.tokens} />
</em>
{:else if token.type === 'codespan'}
2024-08-08 22:01:38 +00:00
<code class="codespan">{revertSanitizedResponseContent(token.raw)}</code>
{:else if token.type === 'br'}
<br />
{:else if token.type === 'del'}
<del>
<svelte:self id={`${id}-del`} tokens={token.tokens} />
</del>
2024-08-08 22:01:38 +00:00
{:else if token.type === 'inlineKatex'}
{#if token.text}
2024-08-14 14:07:39 +00:00
<KatexRenderer content={revertSanitizedResponseContent(token.text)} displayMode={false} />
2024-08-08 22:01:38 +00:00
{/if}
{:else if token.type === 'text'}
2024-08-08 22:01:38 +00:00
{token.raw}
{/if}
{/each}