mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 13:09:07 +00:00
14 lines
307 B
C#
14 lines
307 B
C#
|
using Markdig.Extensions.Mathematics;
|
|||
|
|
|||
|
namespace MudBlazor;
|
|||
|
|
|||
|
internal static class MathInlineEx
|
|||
|
{
|
|||
|
public static string GetDelimiter(this MathInline @this) =>
|
|||
|
string.Create(@this.DelimiterCount, @this.Delimiter, static (span, c) =>
|
|||
|
{
|
|||
|
for (var i = 0; i < span.Length; i++)
|
|||
|
span[i] = c;
|
|||
|
});
|
|||
|
}
|