mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 05:45:19 +00:00
fix: visible backtick in codespan
This commit is contained in:
parent
4ef042e966
commit
769df698be
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@
|
||||||
<svelte:self id={`${id}-em`} tokens={token.tokens} />
|
<svelte:self id={`${id}-em`} tokens={token.tokens} />
|
||||||
</em>
|
</em>
|
||||||
{:else if token.type === 'codespan'}
|
{:else if token.type === 'codespan'}
|
||||||
<code class="codespan">{revertSanitizedResponseContent(token.raw)}</code>
|
<code class="codespan">{token.text}</code>
|
||||||
{:else if token.type === 'br'}
|
{:else if token.type === 'br'}
|
||||||
<br />
|
<br />
|
||||||
{:else if token.type === 'del'}
|
{:else if token.type === 'del'}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue