Contains a markdown document. This markdown document class supports original markdown,...
Represents a nested block with no special formatting rules in a markdown document.
bool HasOneChild
If the element has only one child.
MarkdownElement FirstChild
First child, or null if none.
Abstract base class for all markdown elements.
virtual bool ForEach(MarkdownElementHandler Callback, object State)
Loops through all child-elements for the element.
override bool Equals(object obj)
Determines whether the specified object is equal to the current object.
override int GetHashCode()
Serves as the default hash function.
MarkdownDocument Document
Markdown document.
Abstract base class for all markdown elements with one child element.
override bool Equals(object obj)
Determines whether the specified object is equal to the current object.
MarkdownElementSingleChild(MarkdownDocument Document, MarkdownElement Child)
Abstract base class for all markdown elements with one child element.
override int GetHashCode()
Serves as the default hash function.
override IEnumerable< MarkdownElement > Children
Any children of the element.
abstract MarkdownElementSingleChild Create(MarkdownElement Child, MarkdownDocument Document)
Creates an object of the same type, and meta-data, as the current object, but with content defined by...
override bool ForEach(MarkdownElementHandler Callback, object State)
Loops through all child-elements for the element.
delegate bool MarkdownElementHandler(MarkdownElement Element, object State)
Delegate for markdown element callback methods.