Package com.vladsch.flexmark.parser
Interface PegdownExtensions
-
public interface PegdownExtensions
-
-
Field Summary
Fields Modifier and Type Field Description static int
ABBREVIATIONS
PHP Markdown Extra style abbreviations.static int
ALL
static int
ALL_OPTIONALS
All Optionals other than Suppress and FORCELISTITEMPARA which is a backwards compatibility extensionstatic int
ALL_WITH_OPTIONALS
static int
ANCHORLINKS
Enables anchor links in headers.static int
ATXHEADERSPACE
Requires a space char after Atx # header prefixes, so that #dasdsdaf is not a header.static int
AUTOLINKS
Enables plain autolinks the way github flavoured markdown implements them.static int
DEFINITIONS
PHP Markdown Extra style definition lists.static int
EXTANCHORLINKS
Generate anchor links for headers using complete contents of the header.static int
EXTANCHORLINKS_WRAP
EXTANCHORLINKS should wrap header content instead of creating an empty anchor: `<h1><a name="header-a">header a</a></h1>`static int
FENCED_CODE_BLOCKS
PHP Markdown Extra style fenced code blocks.static int
FOOTNOTES
Enables footnote processing [^1]: Text Paragraph with continuations and footnote reference [^1]static int
FORCELISTITEMPARA
Force List and Definition Paragraph wrapping if it includes more than just a single paragraphstatic int
GITHUB_COMMENT_COMPATIBLE
These are GitHub comment (issues, pull requests and comments) processing compatibility flagsstatic int
GITHUB_DOCUMENT_COMPATIBLE
These are GitHub main repo document processing compatibility flagsstatic int
GITHUB_WIKI_COMPATIBLE
These are GitHub wiki page processing compatibility flagsstatic int
HARDWRAPS
Enables the parsing of hard wraps as HTML linebreaks.static int
INSERTED
Enables adding a dummy reference key node to RefLink and RefImage so that the AST differs between [ ][] and plain [ ] for refLink and ![ ][] and plain ![ ] for RefImagestatic int
MULTI_LINE_IMAGE_URLS


Enables MULTI_LINE_IMAGE_URLS extension which allows image urls of the form above. any text at all until ) or "title") at the begining of a line. Used for displaying UML diagrams with gravizo.com
- See Also:
- Constant Field Values
-
SUPERSCRIPT
static final int SUPERSCRIPT
trace parsing elements to console- See Also:
- Constant Field Values
-
FORCELISTITEMPARA
static final int FORCELISTITEMPARA
Force List and Definition Paragraph wrapping if it includes more than just a single paragraph- See Also:
- Constant Field Values
-
NOT_USED
static final int NOT_USED
spare bits- See Also:
- Constant Field Values
-
INSERTED
static final int INSERTED
Enables adding a dummy reference key node to RefLink and RefImage so that the AST differs between [ ][] and plain [ ] for refLink and ![ ][] and plain ![ ] for RefImage- See Also:
- Constant Field Values
-
UNUSABLE
static final int UNUSABLE
- See Also:
- Constant Field Values
-
ALL_OPTIONALS
static final int ALL_OPTIONALS
All Optionals other than Suppress and FORCELISTITEMPARA which is a backwards compatibility extension- See Also:
- Constant Field Values
-
ALL_WITH_OPTIONALS
static final int ALL_WITH_OPTIONALS
- See Also:
- Constant Field Values
-
GITHUB_DOCUMENT_COMPATIBLE
static final int GITHUB_DOCUMENT_COMPATIBLE
These are GitHub main repo document processing compatibility flags- See Also:
- Constant Field Values
-
GITHUB_WIKI_COMPATIBLE
static final int GITHUB_WIKI_COMPATIBLE
These are GitHub wiki page processing compatibility flags- See Also:
- Constant Field Values
-
GITHUB_COMMENT_COMPATIBLE
static final int GITHUB_COMMENT_COMPATIBLE
These are GitHub comment (issues, pull requests and comments) processing compatibility flags- See Also:
- Constant Field Values
-
-