Package org.pegdown

Interface Extensions

All Known Implementing Classes:
Parser

public interface Extensions
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    PHP Markdown Extra style abbreviations.
    static final int
    All available extensions excluding the SUPPRESS_...
    static final int
    Enables plain autolinks the way github flavoured markdown implements them.
    static final int
    PHP Markdown Extra style definition lists.
    static final int
    PHP Markdown Extra style fenced code blocks.
    static final int
    Enables the parsing of hard wraps as HTML linebreaks.
    static final int
    The default, standard markup mode without any extensions.
    static final int
    Pretty single and double quotes.
    static final int
    Pretty ellipses, dashes and apostrophes.
    static final int
    All of the smartypants prettyfications.
    static final int
    Support ~~strikethroughs~~ as supported in Pandoc and Github.
    static final int
    Suppresses HTML blocks as well as inline HTML tags.
    static final int
    Suppresses HTML blocks.
    static final int
    Suppresses inline HTML tags.
    static final int
    Table support similar to what Multimarkdown offers.
    static final int
    Support [[Wiki-style links]].
  • Field Details

    • NONE

      static final int NONE
      The default, standard markup mode without any extensions.
      See Also:
    • SMARTS

      static final int SMARTS
      Pretty ellipses, dashes and apostrophes.
      See Also:
    • QUOTES

      static final int QUOTES
      Pretty single and double quotes.
      See Also:
    • SMARTYPANTS

      static final int SMARTYPANTS
      All of the smartypants prettyfications. Equivalent to SMARTS + QUOTES.
      See Also:
    • ABBREVIATIONS

      static final int ABBREVIATIONS
      PHP Markdown Extra style abbreviations.
      See Also:
    • HARDWRAPS

      static final int HARDWRAPS
      Enables the parsing of hard wraps as HTML linebreaks. Similar to what github does.
      See Also:
    • TABLES

      static final int TABLES
      Table support similar to what Multimarkdown offers.
      See Also:
    • DEFINITIONS

      static final int DEFINITIONS
      PHP Markdown Extra style definition lists. Additionally supports the small extension proposed in the article referenced below.
      See Also:
    • FENCED_CODE_BLOCKS

      static final int FENCED_CODE_BLOCKS
      PHP Markdown Extra style fenced code blocks.
      See Also:
    • STRIKETHROUGH

      static final int STRIKETHROUGH
      Support ~~strikethroughs~~ as supported in Pandoc and Github.
      See Also:
    • ALL

      static final int ALL
      All available extensions excluding the SUPPRESS_... options.
      See Also:
    • SUPPRESS_HTML_BLOCKS

      static final int SUPPRESS_HTML_BLOCKS
      Suppresses HTML blocks. They will be accepted in the input but not be contained in the output.
      See Also:
    • SUPPRESS_INLINE_HTML

      static final int SUPPRESS_INLINE_HTML
      Suppresses inline HTML tags. They will be accepted in the input but not be contained in the output.
      See Also:
    • SUPPRESS_ALL_HTML

      static final int SUPPRESS_ALL_HTML
      Suppresses HTML blocks as well as inline HTML tags. Both will be accepted in the input but not be contained in the output.
      See Also: