MarkdownBlockquote
Namespace: Markdown
Markdown blockquote.
public class MarkdownBlockquote : MarkdownTextElement, IMarkdownBlockElement
Inheritance Object → MarkdownTextElement → MarkdownBlockquote
Implements IMarkdownBlockElement
Properties
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
MarkdownBlockquote(String)
Initializes a new instance of MarkdownBlockquote class.
public MarkdownBlockquote(string text)
Parameters
text
String
The blockquote text.
MarkdownBlockquote(MarkdownInlineElement)
Initializes a new instance of MarkdownBlockquote class.
public MarkdownBlockquote(MarkdownInlineElement inlineElement)
Parameters
inlineElement
MarkdownInlineElement
The blockquote text as markdown inline element.
Methods
ToString()
Returns a string that represents the current markdown blockquote. The blockquote text is trimed.
public string ToString()
Returns
String
A string that represents the current markdown blockquote.