public final class MarkdownFeatures
extends com.aspose.html.internal.ms.System.Enum
A MarkdownFeatures
flag set is a set of zero or more of the following flags, which are used to select elements converted to markdown.
Modifier and Type | Field and Description |
---|---|
static int |
AutomaticParagraph
This flag enables conversion of
paragraph elements. |
static int |
Blockquote
This flag enables conversion of
blockquote elements. |
static int |
CodeBlock
This flag enables conversion of code blocks.
|
static int |
Emphasis
This flag enables conversion of
emphasis elements. |
static int |
Header
This flag enables conversion of
header elements. |
static int |
HorizontalRule
This flag enables conversion of
horizontal rules . |
static int |
Image
This flag enables conversion of
img elements. |
static int |
InlineCode
This flag enables conversion of
code elements. |
static int |
InlineHTML
This flag enables HTML elements inlining.
|
static int |
LineBreak
This flag enables conversion of
br elements. |
static int |
Link
This flag enables conversion of
a elements. |
static int |
List
This flag enables conversion of
list elements. |
static int |
Strikethrough
This flag enables conversion of
del elements. |
static int |
Strong
This flag enables conversion of
strong elements. |
static int |
Table
This flag enables conversion of
table elements. |
static int |
TaskList
This flag enables conversion of task lists.
|
static int |
Video
This flag enables conversion of
video elements. |
Clone, CloneTo, format, format, get_Caption, get_Value, getName, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, isDefined, isDefined, isDefined, isDefined, parse, parse, parse, parse, register, toObject
public static final int InlineHTML
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.
public static final int AutomaticParagraph
This flag enables conversion of paragraph
elements. Content of such elements will be placed on separate lines, so markdown handlers will wrap it.
public static final int Header
This flag enables conversion of header
elements.
public static final int Blockquote
This flag enables conversion of blockquote
elements.
public static final int List
This flag enables conversion of list
elements.
public static final int CodeBlock
This flag enables conversion of code blocks. Code block consists of 2 elements pre
and code
, content of such construction is processes "as is".
public static final int HorizontalRule
This flag enables conversion of horizontal rules
.
public static final int Link
This flag enables conversion of a
elements.
public static final int Emphasis
This flag enables conversion of emphasis
elements.
public static final int InlineCode
This flag enables conversion of code
elements.
public static final int Image
This flag enables conversion of img
elements.
public static final int LineBreak
This flag enables conversion of br
elements.
public static final int Video
This flag enables conversion of video
elements.
public static final int Table
This flag enables conversion of table
elements.
public static final int TaskList
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
.
public static final int Strikethrough
This flag enables conversion of del
elements.
public static final int Strong
This flag enables conversion of strong
elements.