< Back


MarkdownStrongEmphasis

Namespace: Markdown

Markdown strong emphasis.

public class MarkdownStrongEmphasis : MarkdownInlineElement

Inheritance ObjectMarkdownTextElementMarkdownInlineElementMarkdownStrongEmphasis

Properties

Char

Gets or sets the strong emphasis character.

public char Char { get; private set; }

Property Value

Char
Strong emphasis character.

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

MarkdownStrongEmphasis(String, Char)

Initializes a new instance of the MarkdownStrongEmphasis class.

public MarkdownStrongEmphasis(string text, char char)

Parameters

text String
The strong emphasis text.

char Char
The strong emphasis character. Default is ‘*’.

MarkdownStrongEmphasis(MarkdownInlineElement, Char)

Initializes a new instance of the MarkdownStrongEmphasis class.

public MarkdownStrongEmphasis(MarkdownInlineElement inlineElement, char char)

Parameters

inlineElement MarkdownInlineElement
The strong emphasis text as markdown inline element.

char Char
The strong emphasis character. Default is ‘*’.

Methods

ToString()

Returns a string that represents the current markdown strong emphasis.

public string ToString()

Returns

String
A string that represents the current markdown strong emphasis.


< Back