Skip to the content.

< Back


MarkdownTextElement

Namespace: Markdown

Markdown text element.

public abstract class MarkdownTextElement

Inheritance ObjectMarkdownTextElement
Attributes NullableContextAttribute, NullableAttribute

Properties

InlineElement

Gets or sets the markdown inline element.

protected MarkdownInlineElement InlineElement { get; set; }

Property Value

MarkdownInlineElement
The markdown inline element.

Text

Gets or sets the text.

public string Text { get; set; }

Property Value

String
The text or a string that represents the markdown inline element.

Constructors

MarkdownTextElement(String)

Initializes a new instance of the MarkdownTextElement class.

protected MarkdownTextElement(string text)

Parameters

text String
The text.

MarkdownTextElement(MarkdownInlineElement)

Initializes a new instance of the MarkdownTextElement class.

protected MarkdownTextElement(MarkdownInlineElement inlineElement)

Parameters

inlineElement MarkdownInlineElement
The text as markdown inline element.


< Back