AI-Studio/app/MindWork AI Studio/Components/CodeBlock.razor
2025-05-30 22:39:16 +02:00

23 lines
414 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>
}