Base class for markdown leaf block nodes.
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
public abstract class Leaf : Markdown.Block, Markdown.INode, Markdown.IBlockInlineContainerGets the children of the leaf node.
public IReadOnlyList<Markdown.Inline> Children { get; }
| Type | Description |
|---|---|
| IReadOnlyList<Markdown.Inline> | Gets the children of the leaf node. |
Gets or sets the value of the leaf node.
public string Value { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the value of the leaf node. |
Appends a child to the leaf node.
public void Add(Markdown.Inline node)
| Type | Name | Description |
|---|---|---|
| Markdown.Inline | node |