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