AI-Studio/app/MindWork AI Studio/Components/CodeBlock.razor

23 lines
414 B
Plaintext
Raw Normal View History

2025-05-30 20:39:16 +00:00
@if (!this.IsInline)
{
@if (this.ParentTabs is null)
{
2025-05-30 20:39:16 +00:00
<MudPaper Class="code-block no-elevation" Style="@this.BlockPadding">
<pre>
<code>
@this.ChildContent
</code>
</pre>
</MudPaper>
}
}
else
{
2025-05-30 20:39:16 +00:00
<span class="inline-code-block">
<kbd>
@this.ChildContent
</kbd>
</span>
}