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. inlineParsersMethods 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 classAutolinkInlineParserAttempt to parse an autolink (URL or email in pointy brackets).classBackslashInlineParserParse 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.classBackticksInlineParserAttempt to parse backticks, returning either a backtick code span or a literal sequence of backticks.classEntityInlineParserAttempts to parse an HTML entity or numeric character reference.classHtmlInlineParserAttempt to parse inline HTML.Methods in org.commonmark.internal.inline that return InlineContentParser Modifier and Type Method Description InlineContentParserAutolinkInlineParser.Factory. create()InlineContentParserBackslashInlineParser.Factory. create()InlineContentParserBackticksInlineParser.Factory. create()InlineContentParserEntityInlineParser.Factory. create()InlineContentParserHtmlInlineParser.Factory. create() -
Uses of InlineContentParser in org.commonmark.parser.beta
Methods in org.commonmark.parser.beta that return InlineContentParser Modifier and Type Method Description InlineContentParserInlineContentParserFactory. create()Create anInlineContentParserthat will do the parsing.
-