com.aspose.html.saving

Class MarkdownFeatures

  • java.lang.Object
    • com.aspose.html.internal.ms.System.ValueType<com.aspose.html.internal.ms.System.Enum>
      • com.aspose.html.internal.ms.System.Enum
        • com.aspose.html.saving.MarkdownFeatures


  • 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.

    • Nested Class Summary

      • Nested classes/interfaces inherited from class com.aspose.html.internal.ms.System.Enum

        com.aspose.html.internal.ms.System.Enum.AbstractEnum, com.aspose.html.internal.ms.System.Enum.FlaggedEnum, com.aspose.html.internal.ms.System.Enum.ObjectEnum, com.aspose.html.internal.ms.System.Enum.SimpleEnum
    • Field Summary

      Fields 
      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.
      • Fields inherited from class com.aspose.html.internal.ms.System.Enum

        EnumSeparatorCharArray
    • Method Summary

      • Methods inherited from class com.aspose.html.internal.ms.System.Enum

        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
    • Field Detail

      • InlineHTML

        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.

        See Also:
        Constant Field Values
      • AutomaticParagraph

        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.

        See Also:
        Constant Field Values
      • Header

        public static final int Header

        This flag enables conversion of header elements.

        See Also:
        Constant Field Values
      • Blockquote

        public static final int Blockquote

        This flag enables conversion of blockquote elements.

        See Also:
        Constant Field Values
      • List

        public static final int List

        This flag enables conversion of list elements.

        See Also:
        Constant Field Values
      • CodeBlock

        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".

        See Also:
        Constant Field Values
      • HorizontalRule

        public static final int HorizontalRule

        This flag enables conversion of horizontal rules.

        See Also:
        Constant Field Values
      • Link

        public static final int Link

        This flag enables conversion of a elements.

        See Also:
        Constant Field Values
      • Emphasis

        public static final int Emphasis

        This flag enables conversion of emphasis elements.

        See Also:
        Constant Field Values
      • InlineCode

        public static final int InlineCode

        This flag enables conversion of code elements.

        See Also:
        Constant Field Values
      • Image

        public static final int Image

        This flag enables conversion of img elements.

        See Also:
        Constant Field Values
      • LineBreak

        public static final int LineBreak

        This flag enables conversion of br elements.

        See Also:
        Constant Field Values
      • Video

        public static final int Video

        This flag enables conversion of video elements.

        See Also:
        Constant Field Values
      • Table

        public static final int Table

        This flag enables conversion of table elements.

        See Also:
        Constant Field Values
      • TaskList

        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.

        See Also:
        Constant Field Values
      • Strikethrough

        public static final int Strikethrough

        This flag enables conversion of del elements.

        See Also:
        Constant Field Values
      • Strong

        public static final int Strong

        This flag enables conversion of strong elements.

        See Also:
        Constant Field Values