mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 16:02:56 +00:00
23 lines
414 B
Plaintext
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>
|
|
}
|
|
|