mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 14:29:07 +00:00
16 lines
332 B
C#
16 lines
332 B
C#
namespace AIStudio.Tools;
|
|
|
|
public static class Markdown
|
|
{
|
|
public static Typo OverrideHeaderTypo(Typo arg) => arg switch
|
|
{
|
|
Typo.h1 => Typo.h4,
|
|
Typo.h2 => Typo.h5,
|
|
Typo.h3 => Typo.h6,
|
|
Typo.h4 => Typo.h6,
|
|
Typo.h5 => Typo.h6,
|
|
Typo.h6 => Typo.h6,
|
|
|
|
_ => arg
|
|
};
|
|
} |