Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BlockElementChildren.cs
2
4{
9 {
16 : base(Document, Children)
17 {
18 }
19
26 : base(Document, Children)
27 {
28 }
29
33 public override bool IsBlockElement => true;
34 }
35}
Contains a markdown document. This markdown document class supports original markdown,...
Abstract base class for block elements with children.
override bool IsBlockElement
If the element is a block element.
BlockElementChildren(MarkdownDocument Document, ChunkedList< MarkdownElement > Children)
Abstract base class for block elements with children.
BlockElementChildren(MarkdownDocument Document, params MarkdownElement[] Children)
Abstract base class for block elements with children.
Abstract base class for all markdown elements with a variable number of child elements.
override ChunkedList< MarkdownElement > Children
Any children of the element.
Abstract base class for all markdown elements.
MarkdownDocument Document
Markdown document.
A chunked list is a linked list of chunks of objects of type T .
Definition: ChunkedList.cs:54