Uses of Interface
org.commonmark.parser.beta.LinkProcessor
-
Packages that use LinkProcessor Package Description org.commonmark.ext.footnotes.internal org.commonmark.internal org.commonmark.internal.inline org.commonmark.parser Parsing input text to AST nodes (seeParser
) -
-
Uses of LinkProcessor in org.commonmark.ext.footnotes.internal
Classes in org.commonmark.ext.footnotes.internal that implement LinkProcessor Modifier and Type Class Description class
FootnoteLinkProcessor
For turning e.g. -
Uses of LinkProcessor in org.commonmark.internal
Fields in org.commonmark.internal with type parameters of type LinkProcessor Modifier and Type Field Description private java.util.List<LinkProcessor>
DocumentParser. linkProcessors
private java.util.List<LinkProcessor>
InlineParserContextImpl. linkProcessors
private java.util.List<LinkProcessor>
InlineParserImpl. linkProcessors
Methods in org.commonmark.internal that return types with arguments of type LinkProcessor Modifier and Type Method Description private java.util.List<LinkProcessor>
InlineParserImpl. calculateLinkProcessors(java.util.List<LinkProcessor> linkProcessors)
java.util.List<LinkProcessor>
InlineParserContextImpl. getCustomLinkProcessors()
Method parameters in org.commonmark.internal with type arguments of type LinkProcessor Modifier and Type Method Description private java.util.List<LinkProcessor>
InlineParserImpl. calculateLinkProcessors(java.util.List<LinkProcessor> linkProcessors)
-
Uses of LinkProcessor in org.commonmark.internal.inline
Classes in org.commonmark.internal.inline that implement LinkProcessor Modifier and Type Class Description class
CoreLinkProcessor
-
Uses of LinkProcessor in org.commonmark.parser
Fields in org.commonmark.parser with type parameters of type LinkProcessor Modifier and Type Field Description private java.util.List<LinkProcessor>
Parser.Builder. linkProcessors
private java.util.List<LinkProcessor>
Parser. linkProcessors
Methods in org.commonmark.parser that return types with arguments of type LinkProcessor Modifier and Type Method Description java.util.List<LinkProcessor>
InlineParserContext. getCustomLinkProcessors()
Methods in org.commonmark.parser with parameters of type LinkProcessor Modifier and Type Method Description Parser.Builder
Parser.Builder. linkProcessor(LinkProcessor linkProcessor)
Add a custom link/image processor for inline parsing.
-