AI-Studio/app/MindWork AI Studio/Components/CodeBlock.razor
nilskruthoff 5b685193ef
UI for Pandoc integration (#393)
Co-authored-by: Thorsten Sommer
2025-05-29 14:01:56 +02:00

16 lines
313 B
Plaintext

@if (!this.IsInline)
{
@if (this.ParentTabs is null)
{
<MudPaper Class="code-block no-elevation" Style="@this.BlockPadding()">
<pre><code>@this.ChildContent</code></pre>
</MudPaper>
}
}
else
{
<span class="inline-code-block"><kbd>@this.ChildContent</kbd></span>
}