Interface MarkdownMarkup
- All Superinterfaces:
Markup
,TextMarkup
- All Known Implementing Classes:
MarkdownSink
This interface defines all markups and syntaxes used by the Markdown format.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Syntax for the anchor end: "\"></a>"static final String
Syntax for the anchor start: "<a name=\""static final char
backslash markup char: '\\'static final String
Syntax for the bold style end: "**"static final String
Syntax for the bold style start: "**"static final String
static final String
static final String
Syntax for the horizontal rule: "========"static final String
Syntax for the italic style end: "_"static final String
Syntax for the italic style start: "_"static final String
Syntax for the link end: ")"static final String
Syntax for the link start: "["static final String
Syntax for the link start: "]("static final String
Syntax for the list start: "-"static final String
Syntax for the header start: "---"static final String
Syntax for the mono-spaced style end: "`"static final String
Syntax for the mono-spaced style start: "`"static final String
Syntax for the non boxed verbatim end: "```"static final String
Syntax for the non boxed verbatim start: "```"static final String
Syntax for the non breaking space: "\ "static final char
numbering decimal markup char: '1'static final char
numbering lower alpha markup char: 'a'static final char
numbering lower roman markup char: 'i'static final char
numbering upper alpha markup char: 'A'static final char
numbering upper roman markup char: 'I'static final char
page break markup char: '\f'static final String
Syntax for the page break: "\f"static final String
Syntax for the section title start: "#"static final String
Syntax for the table cell start: "|"static final String
Syntax for the table column, centered style: "---|"static final String
Syntax for the table column, left style: "---+"static final String
Syntax for the table column, right style: "---:"static final String
Syntax for the table row end: "|"Fields inherited from interface org.apache.maven.doxia.markup.Markup
COLON, EOL, EQUAL, GREATER_THAN, LEFT_CURLY_BRACKET, LEFT_SQUARE_BRACKET, LESS_THAN, MINUS, PLUS, QUOTE, RIGHT_CURLY_BRACKET, RIGHT_SQUARE_BRACKET, SEMICOLON, SLASH, SPACE, STAR
Fields inherited from interface org.apache.maven.doxia.markup.TextMarkup
PIPE
-
Field Details
-
BACKSLASH
static final char BACKSLASHbackslash markup char: '\\'- See Also:
-
COMMENT_START
- See Also:
-
COMMENT_END
- See Also:
-
NUMBERING
static final char NUMBERINGnumbering decimal markup char: '1'- See Also:
-
NUMBERING_LOWER_ALPHA_CHAR
static final char NUMBERING_LOWER_ALPHA_CHARnumbering lower alpha markup char: 'a'- See Also:
-
NUMBERING_LOWER_ROMAN_CHAR
static final char NUMBERING_LOWER_ROMAN_CHARnumbering lower roman markup char: 'i'- See Also:
-
NUMBERING_UPPER_ALPHA_CHAR
static final char NUMBERING_UPPER_ALPHA_CHARnumbering upper alpha markup char: 'A'- See Also:
-
NUMBERING_UPPER_ROMAN_CHAR
static final char NUMBERING_UPPER_ROMAN_CHARnumbering upper roman markup char: 'I'- See Also:
-
PAGE_BREAK
static final char PAGE_BREAKpage break markup char: '\f'- See Also:
-
ANCHOR_END_MARKUP
Syntax for the anchor end: "\"></a>"- See Also:
-
ANCHOR_START_MARKUP
Syntax for the anchor start: "<a name=\""- See Also:
-
BOLD_END_MARKUP
Syntax for the bold style end: "**"- See Also:
-
BOLD_START_MARKUP
Syntax for the bold style start: "**"- See Also:
-
METADATA_MARKUP
Syntax for the header start: "---" -
HORIZONTAL_RULE_MARKUP
Syntax for the horizontal rule: "========" -
ITALIC_END_MARKUP
Syntax for the italic style end: "_"- See Also:
-
ITALIC_START_MARKUP
Syntax for the italic style start: "_"- See Also:
-
LINK_END_MARKUP
Syntax for the link end: ")"- See Also:
-
LINK_START_1_MARKUP
Syntax for the link start: "["- See Also:
-
LINK_START_2_MARKUP
Syntax for the link start: "]("- See Also:
-
LIST_START_MARKUP
Syntax for the list start: "-"- See Also:
-
MONOSPACED_END_MARKUP
Syntax for the mono-spaced style end: "`"- See Also:
-
MONOSPACED_START_MARKUP
Syntax for the mono-spaced style start: "`"- See Also:
-
NON_BOXED_VERBATIM_START_MARKUP
Syntax for the non boxed verbatim start: "```"- See Also:
-
NON_BREAKING_SPACE_MARKUP
Syntax for the non breaking space: "\ " -
PAGE_BREAK_MARKUP
Syntax for the page break: "\f" -
SECTION_TITLE_START_MARKUP
Syntax for the section title start: "#"- See Also:
-
TABLE_CELL_SEPARATOR_MARKUP
Syntax for the table cell start: "|" -
TABLE_COL_DEFAULT_ALIGNED_MARKUP
Syntax for the table column, centered style: "---|" -
TABLE_COL_LEFT_ALIGNED_MARKUP
Syntax for the table column, left style: "---+" -
TABLE_COL_RIGHT_ALIGNED_MARKUP
Syntax for the table column, right style: "---:" -
TABLE_ROW_SEPARATOR_MARKUP
Syntax for the table row end: "|" -
NON_BOXED_VERBATIM_END_MARKUP
Syntax for the non boxed verbatim end: "```"- See Also:
-