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.SavingAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax[FlagsAttribute]
public enum MarkdownFeatures
<FlagsAttribute>
Public Enumeration MarkdownFeatures
[FlagsAttribute]
public enum class MarkdownFeatures
[<FlagsAttribute>]
type MarkdownFeatures
Members
| Member name | Value | Description |
---|
| 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.
|
| 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.
|
| Header | 4 |
This flag enables conversion of header elements.
|
| Blockquote | 8 |
This flag enables conversion of blockquote elements.
|
| List | 16 |
This flag enables conversion of list 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".
|
| HorizontalRule | 64 |
This flag enables conversion of horizontal rules.
|
| Link | 128 |
This flag enables conversion of a elements.
|
| Emphasis | 256 |
This flag enables conversion of emphasis elements.
|
| InlineCode | 512 |
This flag enables conversion of code elements.
|
| Image | 1024 |
This flag enables conversion of img elements.
|
| LineBreak | 2048 |
This flag enables conversion of br elements.
|
| Video | 4096 |
This flag enables conversion of video 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.
|
| Strikethrough | 32768 |
This flag enables conversion of del elements.
|
| Strong | 65536 |
This flag enables conversion of strong elements.
|
See Also