1using System.Collections.Generic;
2using System.Threading.Tasks;
13 private readonly
string key;
29 public string Key => this.key;
50 Values =
new KeyValuePair<string, bool>[] {
new KeyValuePair<string, bool>(
Variable.
ValueObject?.ToString() ??
string.Empty,
false) };
74 public override bool Equals(
object obj)
87 int h1 = base.GetHashCode();
88 int h2 = this.key?.GetHashCode() ?? 0;
90 h1 = ((h1 << 5) + h1) ^ h2;
Contains a markdown document. This markdown document class supports original markdown,...
MarkdownSettings Settings
Markdown settings.
Variables Variables
Collection of variables. Providing such a collection enables script execution inside markdown documen...
Contains some basic statistical information about a Markdown document.
int NrMetaReference
Number of meta references.
Abstract base class for all markdown elements.
MarkdownDocument Document
Markdown document.
MetaReference(MarkdownDocument Document, string Key)
Meta-data reference
override void IncrementStatistics(MarkdownStatistics Statistics)
Increments the property or properties in Statistics corresponding to the element.
override int GetHashCode()
Serves as the default hash function.
bool TryGetMetaData(out KeyValuePair< string, bool >[] Values)
Tries to get meta-data from the document.
override Task Render(IRenderer Output)
Renders the element.
override bool Equals(object obj)
Determines whether the specified object is equal to the current object.
override string ToString()
override bool InlineSpanElement
If the element is an inline span element.
Contains information about a variable.
object ValueObject
Object Value of variable.
virtual bool TryGetVariable(string Name, out Variable Variable)
Tries to get a variable object, given its name.
Interface for Markdown renderers.