Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BlockElementChildren.cs
1using System.Collections.Generic;
2
4{
9 {
15 public BlockElementChildren(MarkdownDocument Document, IEnumerable<MarkdownElement> Children)
16 : base(Document, Children)
17 {
18 }
19
26 : base(Document, Children)
27 {
28 }
29
33 public override bool IsBlockElement => true;
34
35 }
36}
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, IEnumerable< 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 IEnumerable< MarkdownElement > Children
Any children of the element.
Abstract base class for all markdown elements.
MarkdownDocument Document
Markdown document.