Table of Contents

MarkdownElement.MarkdownElement Constructor

Definition

MarkdownElement(string, string, string, string)

Constructor

public MarkdownElement(string name, string prefixSyntax, string suffixSyntax, string fallbackElement)

Parameters

name string

The element name

prefixSyntax string

The markdown prefix syntax character(s) to use before the content or null if there isn't any

suffixSyntax string

The markdown suffix syntax character(s) to use after the content or null if there isn't any

fallbackElement string

The fallback HTML element to use if a block parent HTML element is detected that will cause the markdown syntax to be ignored.

MarkdownElement(string, string, string, string, string)

Constructor

public MarkdownElement(string name, string valueAttributeName, string prefixSyntax, string suffixSyntax, string fallbackElement)

Parameters

name string

The element name

valueAttributeName string

The attribute name from which to get the value to render in the content

prefixSyntax string

The markdown prefix syntax character(s) to use before the content or null if there isn't any

suffixSyntax string

The markdown suffix syntax character(s) to use after the content or null if there isn't any

fallbackElement string

The fallback HTML element to use if a block parent HTML element is detected that will cause the markdown syntax to be ignored.