Class Sealed
public sealed class ChangelogBlock : LeafBlock

Namespace: Moka.Docs.Parsing.Markdown

Represents a changelog container block in the Markdown AST. Contains the raw lines between :::changelog and the closing :::.

Inheritance

Inherits from: LeafBlock

Constructors

NameDescription
ChangelogBlock(BlockParser parser) Represents a changelog container block in the Markdown AST. Contains the raw lines between :::changelog and the closing :::.

ChangelogBlock(BlockParser parser)

ChangelogBlock.ChangelogBlock(BlockParser parser)

Represents a changelog container block in the Markdown AST. Contains the raw lines between :::changelog and the closing :::.

Properties

NameDescription
RawLines Raw lines of content inside the :::changelog block.

RawLines

List<string> ChangelogBlock.RawLines { get; }

Raw lines of content inside the :::changelog block.

Type Relationships
classDiagram
                    style ChangelogBlock fill:#f9f,stroke:#333,stroke-width:2px
                    ChangelogBlock --|> LeafBlock : inherits
                
View Source
#region AST Block
/// <summary>
///     Represents a changelog container block in the Markdown AST.
///     Contains the raw lines between :::changelog and the closing :::.
/// </summary>
public sealed class ChangelogBlock(BlockParser parser) : LeafBlock(parser)
{
    /// <summary>Raw lines of content inside the :::changelog block.</summary>
    public List<string> RawLines { get; } = new();
}
Was this page helpful?