1using System.Collections.Generic;
2using System.Threading.Tasks;
12 private readonly
bool aloneInParagraph;
53 public override bool Equals(
object obj)
56 this.aloneInParagraph == x.aloneInParagraph &&
66 int h1 = base.GetHashCode();
67 int h2 = this.aloneInParagraph.GetHashCode();
69 h1 = ((h1 << 5) + h1) ^ h2;
Contains a markdown document. This markdown document class supports original markdown,...
Multimedia GetReference(string Label)
Gets the multimedia information referenced by a label.
Contains some basic statistical information about a Markdown document.
MarkdownDocument Document
Markdown document.
override void IncrementStatistics(MarkdownStatistics Statistics)
Increments the property or properties in Statistics corresponding to the element.
MultimediaReference(MarkdownDocument Document, LinkedList< MarkdownElement > ChildElements, string Label, bool AloneInParagraph)
Multimedia reference.
override int GetHashCode()
Serves as the default hash function.
override void IncrementStatistics(MarkdownStatistics Statistics)
Increments the property or properties in Statistics corresponding to the element.
bool AloneInParagraph
If the element is alone in a paragraph.
override bool OutsideParagraph
If element, parsed as a span element, can stand outside of a paragraph if alone in it.
override bool InlineSpanElement
If the element is an inline span element.
override Task Render(IRenderer Output)
Renders the element.
override bool Equals(object obj)
Determines whether the specified object is equal to the current object.
Interface for Markdown renderers.