Enum MarkdownFeatures
Namespace: Aspose.Html.Saving
Assembly: Aspose.HTML.dll (25.7.0)
A Aspose.Html.Saving.MarkdownFeatures flag set is a set of zero or more of the following flags, which are used to select elements converted to markdown.
[Flags]
[ComVisible(true)]
public enum MarkdownFeaturesFields
AutomaticParagraph = 2
This flag enables conversion of paragraph elements. Content of such elements will be placed on separate lines, so markdown handlers will wrap it.
Blockquote = 8
This flag enables conversion of blockquote elements.
CodeBlock = 32
This flag enables conversion of code blocks. Code block consists of 2 elements pre and code, content of such construction is processes “as is”.
Emphasis = 256
This flag enables conversion of emphasis elements.
Header = 4
This flag enables conversion of header elements.
HorizontalRule = 64
This flag enables conversion of horizontal rules.
Image = 1024
This flag enables conversion of img elements.
InlineCode = 512
This flag enables conversion of code elements.
InlineHTML = 1
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.
LineBreak = 2048
This flag enables conversion of br elements.
Link = 128
This flag enables conversion of a elements.
List = 16
This flag enables conversion of list elements.
Strikethrough = 32768
This flag enables conversion of del elements.
Strong = 65536
This flag enables conversion of strong elements.
Table = 8192
This flag enables conversion of table elements.
TaskList = 16384
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.
Video = 4096
This flag enables conversion of video elements.