MarkdownFeatures Enum

MarkdownFeatures enumeration

A MarkdownFeatures flag set is a set of zero or more of the following flags, which are used to select elements converted to markdown.

[Flags]
public enum MarkdownFeatures

Values

NameValueDescription
InlineHTML1This flag enables HTML elements inlining. If this flag is set than block level elements (such as div) whose markdown attribute value equals inline will be inserted in to resulting markdown.
AutomaticParagraph2This flag enables conversion of paragraph elements. Content of such elements will be placed on separate lines, so markdown handlers will wrap it.
Header4This flag enables conversion of header elements.
Blockquote8This flag enables conversion of blockquote elements.
List10This flag enables conversion of list elements.
CodeBlock20This flag enables conversion of code blocks. Code block consists of 2 elements pre and code, content of such construction is processes “as is”.
HorizontalRule40This flag enables conversion of horizontal rules.
Link80This flag enables conversion of a elements.
Emphasis100This flag enables conversion of emphasis elements.
InlineCode200This flag enables conversion of code elements.
Image400This flag enables conversion of img elements.
LineBreak800This flag enables conversion of br elements.
Video1000This flag enables conversion of video elements.
Table2000This flag enables conversion of table elements.
TaskList4000This flag enables conversion of task lists. Task list consists of input element, which must be the first child of list element and whose type attribute value should equal checkbox.
Strikethrough8000This flag enables conversion of del elements.
Strong10000This flag enables conversion of strong elements.

See Also