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 id=\""static final char
backslash markup char: '\\'static final String
static final String
Syntax for the blockquote start: "> "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
indentation e.g.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 ordered list item: '1.static final String
Syntax for the unordered list item: "- "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 breaking space: entity from HTMLstatic 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, center alignment: ":---:"static final String
Syntax for the table column, left alignment (default): "---"static final String
Syntax for the table column, right alignment: "---:"static final String
Syntax for the table row prefix (the other separators in the same row are regularTABLE_CELL_SEPARATOR_MARKUP
characters)static final String
Syntax for the verbatim end: "```"static final String
Syntax for the verbatim start: "```"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:
-
BLANK_LINE
-
INDENT
indentation e.g. for paragraphs inside lists -
ANCHOR_END_MARKUP
Syntax for the anchor end: "\"></a>"- See Also:
-
ANCHOR_START_MARKUP
Syntax for the anchor start: "<a id=\""- 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: "***"- See Also:
-
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_ORDERED_ITEM_START_MARKUP
Syntax for the ordered list item: '1. '- See Also:
-
LIST_UNORDERED_ITEM_START_MARKUP
Syntax for the unordered list item: "- "- 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:
-
VERBATIM_START_MARKUP
Syntax for the verbatim start: "```"- See Also:
-
VERBATIM_END_MARKUP
Syntax for the verbatim end: "```"- See Also:
-
BLOCKQUOTE_START_MARKUP
Syntax for the blockquote start: "> "- See Also:
-
NON_BREAKING_SPACE_MARKUP
Syntax for the non breaking space: entity from HTML- See Also:
-
SECTION_TITLE_START_MARKUP
Syntax for the section title start: "#"- See Also:
-
TABLE_CELL_SEPARATOR_MARKUP
Syntax for the table cell start: "|" -
TABLE_COL_LEFT_ALIGNED_MARKUP
Syntax for the table column, left alignment (default): "---" -
TABLE_COL_RIGHT_ALIGNED_MARKUP
Syntax for the table column, right alignment: "---:" -
TABLE_COL_CENTER_ALIGNED_MARKUP
Syntax for the table column, center alignment: ":---:" -
TABLE_ROW_PREFIX
Syntax for the table row prefix (the other separators in the same row are regularTABLE_CELL_SEPARATOR_MARKUP
characters)
-