Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DetailsReference.cs
1using System.Threading.Tasks;
3
5{
10 {
17 : base(Document, Key)
18 {
19 }
20
25 public override Task Render(IRenderer Output) => Output.Render(this);
26
30 public override bool InlineSpanElement => false;
31
35 public override bool OutsideParagraph => true;
36
41 public override void IncrementStatistics(MarkdownStatistics Statistics)
42 {
43 Statistics.NrDetailsReference++;
44 }
45 }
46}
Contains a markdown document. This markdown document class supports original markdown,...
Contains some basic statistical information about a Markdown document.
int NrDetailsReference
Number of details references.
MarkdownDocument Document
Markdown document.
override bool OutsideParagraph
If element, parsed as a span element, can stand outside of a paragraph if alone in it.
override Task Render(IRenderer Output)
Renders the element.
override bool InlineSpanElement
If the element is an inline span element.
override void IncrementStatistics(MarkdownStatistics Statistics)
Increments the property or properties in Statistics corresponding to the element.
DetailsReference(MarkdownDocument Document, string Key)
Meta-data reference
Interface for Markdown renderers.
Definition: IRenderer.cs:12