Class
Sealed
public sealed class MarkdownParserOptions
Namespace: Moka.Docs.Parsing.Markdown
Configuration options for the Markdown parser.
Properties
| Name | Description |
|---|---|
EnableAdmonitions |
Whether to enable admonition/callout blocks. Default: true. |
EnableTabs |
Whether to enable tabbed content blocks. Default: true. |
EnableAdmonitions
bool MarkdownParserOptions.EnableAdmonitions { get; init; }
Whether to enable admonition/callout blocks. Default: true.
EnableTabs
bool MarkdownParserOptions.EnableTabs { get; init; }
Whether to enable tabbed content blocks. Default: true.
View Source
/// <summary>
/// Configuration options for the Markdown parser.
/// </summary>
public sealed class MarkdownParserOptions
{
/// <summary>Whether to enable admonition/callout blocks. Default: true.</summary>
public bool EnableAdmonitions { get; init; } = true;
/// <summary>Whether to enable tabbed content blocks. Default: true.</summary>
public bool EnableTabs { get; init; } = true;
}