Uses of Interface
org.commonmark.parser.beta.InlineContentParser
-
Packages that use InlineContentParser Package Description org.commonmark.internal org.commonmark.internal.inline org.commonmark.parser.beta Experimental APIs to use for extensions. -
-
Uses of InlineContentParser in org.commonmark.internal
Fields in org.commonmark.internal with type parameters of type InlineContentParser Modifier and Type Field Description private java.util.Map<java.lang.Character,java.util.List<InlineContentParser>>
InlineParserImpl. inlineParsers
Methods in org.commonmark.internal that return types with arguments of type InlineContentParser Modifier and Type Method Description private java.util.Map<java.lang.Character,java.util.List<InlineContentParser>>
InlineParserImpl. createInlineContentParsers()
-
Uses of InlineContentParser in org.commonmark.internal.inline
Classes in org.commonmark.internal.inline that implement InlineContentParser Modifier and Type Class Description class
AutolinkInlineParser
Attempt to parse an autolink (URL or email in pointy brackets).class
BackslashInlineParser
Parse a backslash-escaped special character, adding either the escaped character, a hard line break (if the backslash is followed by a newline), or a literal backslash to the block's children.class
BackticksInlineParser
Attempt to parse backticks, returning either a backtick code span or a literal sequence of backticks.class
EntityInlineParser
Attempts to parse an HTML entity or numeric character reference.class
HtmlInlineParser
Attempt to parse inline HTML.Methods in org.commonmark.internal.inline that return InlineContentParser Modifier and Type Method Description InlineContentParser
AutolinkInlineParser.Factory. create()
InlineContentParser
BackslashInlineParser.Factory. create()
InlineContentParser
BackticksInlineParser.Factory. create()
InlineContentParser
EntityInlineParser.Factory. create()
InlineContentParser
HtmlInlineParser.Factory. create()
-
Uses of InlineContentParser in org.commonmark.parser.beta
Methods in org.commonmark.parser.beta that return InlineContentParser Modifier and Type Method Description InlineContentParser
InlineContentParserFactory. create()
Create anInlineContentParser
that will do the parsing.
-