Class MarkdownParser
java.lang.Object
org.apache.maven.doxia.parser.AbstractParser
org.apache.maven.doxia.parser.AbstractTextParser
org.apache.maven.doxia.module.markdown.MarkdownParser
- All Implemented Interfaces:
MacroExecutor, Markup, TextMarkup, Parser
@Singleton
@Named("markdown")
public class MarkdownParser
extends AbstractTextParser
implements TextMarkup
Implementation of Parser for Markdown documents.
Defers effective parsing to the flexmark-java library, which generates HTML content then delegates parsing of this content to a slightly modified Doxia Xhtml5 parser. (before 1.8, the PegDown library was used)
- Since:
- 1.3
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classInternal parser for HTML generated by the Markdown library. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final com.vladsch.flexmark.html.HtmlRendererFlexmark's HTML renderer (its output will be re-parsed and converted to Sink events)private static final com.vladsch.flexmark.parser.ParserFlexmark's Markdown Metadata parserprivate static final com.vladsch.flexmark.parser.ParserFlexmark's Markdown parser (one static instance fits all)private static final PatternRegex that captures the key and value of a multimarkdown-style metadata entry.private static final PatternRegex that identifies a multimarkdown-style metadata section at the start of the document In order to ensure that we have minimal risk of false positives when slurping metadata sections, the first key in the metadata section must be one of these standard keys or else the entire metadata section is ignored.The parser of the HTML produced by Flexmark, that we will use to convert this HTML to Sink eventsFields inherited from interface 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, STARFields inherited from interface Parser
TXT_TYPE, UNKNOWN_TYPE, XML_TYPEFields inherited from interface TextMarkup
PIPE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) static StringnormalizeMultilineValue(String value) voidParses the given source model and emits Doxia events into the given sink.private booleanprocessMetadataForHtml(StringBuilder html, StringBuilder source) (package private) Stringuses flexmark-java library to parse content and generate HTML output.private Stringprivate booleanwriteHtmlMetadata(StringBuilder html, String key, List<String> values) private booleanwriteHtmlMetadata(StringBuilder html, Map<String, List<String>> data) Methods inherited from class AbstractTextParser
getTypeMethods inherited from class AbstractParser
addSinkWrapperFactory, doxiaVersion, executeMacro, getBasedir, getMacroManager, getSinkWrapperFactories, getWrappedSink, init, isEmitAnchorsForIndexableEntries, isEmitComments, isSecondParsing, parse, parse, parse, setEmitAnchorsForIndexableEntries, setEmitComments, setMacroExecutor, setSecondParsing
-
Field Details
-
METADATA_SECTION_PATTERN
Regex that identifies a multimarkdown-style metadata section at the start of the document In order to ensure that we have minimal risk of false positives when slurping metadata sections, the first key in the metadata section must be one of these standard keys or else the entire metadata section is ignored.- See Also:
-
METADATA_ENTRY_PATTERN
Regex that captures the key and value of a multimarkdown-style metadata entry. Group 1 captures the key, group 2 captures the value. Multivalues are not supported in the syntax! Multiline values need to be normalized- See Also:
-
parser
The parser of the HTML produced by Flexmark, that we will use to convert this HTML to Sink events -
FLEXMARK_PARSER
private static final com.vladsch.flexmark.parser.Parser FLEXMARK_PARSERFlexmark's Markdown parser (one static instance fits all) -
FLEXMARK_METADATA_PARSER
private static final com.vladsch.flexmark.parser.Parser FLEXMARK_METADATA_PARSERFlexmark's Markdown Metadata parser -
FLEXMARK_HTML_RENDERER
private static final com.vladsch.flexmark.html.HtmlRenderer FLEXMARK_HTML_RENDERERFlexmark's HTML renderer (its output will be re-parsed and converted to Sink events)
-
-
Constructor Details
-
MarkdownParser
public MarkdownParser()
-
-
Method Details
-
parse
Description copied from interface:ParserParses the given source model and emits Doxia events into the given sink.- Specified by:
parsein interfaceParser- Parameters:
source- not null reader that provides the source document.sink- A sink that consumes the Doxia events.reference- a string identifying the source (for file based documents the source file path)- Throws:
ParseException- if the model could not be parsed.
-
processMetadataForHtml
-
normalizeMultilineValue
-
writeHtmlMetadata
-
writeHtmlMetadata
-
toXhtml
uses flexmark-java library to parse content and generate HTML output.- Parameters:
source- the Markdown source- Returns:
- HTML content generated by flexmark-java
- Throws:
IOException- passed through
-
toXhtml
-