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.

Namespace: Aspose.Html.Saving
Assembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax
[FlagsAttribute]
public enum MarkdownFeatures
Members
  Member nameValueDescription
InlineHTML1 This 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.
AutomaticParagraph2 This flag enables conversion of paragraph elements. Content of such elements will be placed on separate lines, so markdown handlers will wrap it.
Header4 This flag enables conversion of header elements.
Blockquote8 This flag enables conversion of blockquote elements.
List16 This flag enables conversion of list elements.
CodeBlock32 This flag enables conversion of code blocks. Code block consists of 2 elements pre and code, content of such construction is processes "as is".
HorizontalRule64 This flag enables conversion of horizontal rules.
Link128 This flag enables conversion of a elements.
Emphasis256 This flag enables conversion of emphasis elements.
InlineCode512 This flag enables conversion of code elements.
Image1024 This flag enables conversion of img elements.
LineBreak2048 This flag enables conversion of br elements.
Video4096 This flag enables conversion of video elements.
Table8192 This flag enables conversion of table elements.
TaskList16384 This 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.
Strikethrough32768 This flag enables conversion of del elements.
Strong65536 This flag enables conversion of strong elements.
See Also