Uses of Class
org.commonmark.parser.beta.Scanner
-
Packages that use Scanner Package Description org.commonmark.ext.footnotes.internal org.commonmark.internal org.commonmark.internal.inline org.commonmark.internal.util org.commonmark.parser.beta Experimental APIs to use for extensions. -
-
Uses of Scanner in org.commonmark.ext.footnotes.internal
Methods in org.commonmark.ext.footnotes.internal with parameters of type Scanner Modifier and Type Method Description LinkResult
FootnoteLinkProcessor. process(LinkInfo linkInfo, Scanner scanner, InlineParserContext context)
-
Uses of Scanner in org.commonmark.internal
Fields in org.commonmark.internal declared as Scanner Modifier and Type Field Description private Scanner
InlineParserImpl. scanner
Methods in org.commonmark.internal that return Scanner Modifier and Type Method Description Scanner
InlineParserImpl. scanner()
Methods in org.commonmark.internal with parameters of type Scanner Modifier and Type Method Description private boolean
LinkReferenceDefinitionParser. destination(Scanner scanner)
private boolean
LinkReferenceDefinitionParser. label(Scanner scanner)
private static InlineParserImpl.DestinationTitle
InlineParserImpl. parseInlineDestinationTitle(Scanner scanner)
Try to parse the destination and an optional title for an inline link/image.private static java.lang.String
InlineParserImpl. parseLinkDestination(Scanner scanner)
Attempt to parse link destination, returning the string or null if no match.(package private) static java.lang.String
InlineParserImpl. parseLinkLabel(Scanner scanner)
Attempt to parse a link label, returning the label between the brackets or null.private static java.lang.String
InlineParserImpl. parseLinkTitle(Scanner scanner)
Attempt to parse link title (sans quotes), returning the string or null if no match.private boolean
LinkReferenceDefinitionParser. startDefinition(Scanner scanner)
private boolean
LinkReferenceDefinitionParser. startTitle(Scanner scanner)
private boolean
LinkReferenceDefinitionParser. title(Scanner scanner)
-
Uses of Scanner in org.commonmark.internal.inline
Methods in org.commonmark.internal.inline with parameters of type Scanner Modifier and Type Method Description private ParsedInline
EntityInlineParser. entity(Scanner scanner, Position start)
private static ParsedInline
HtmlInlineParser. htmlInline(Position start, Scanner scanner)
private static LinkResult
CoreLinkProcessor. process(LinkInfo linkInfo, Scanner scanner, java.lang.String destination, java.lang.String title)
LinkResult
CoreLinkProcessor. process(LinkInfo linkInfo, Scanner scanner, InlineParserContext context)
private static boolean
HtmlInlineParser. tryCdata(Scanner scanner)
private static boolean
HtmlInlineParser. tryClosingTag(Scanner scanner)
private static boolean
HtmlInlineParser. tryComment(Scanner scanner)
private static boolean
HtmlInlineParser. tryDeclaration(Scanner scanner)
private static boolean
HtmlInlineParser. tryOpenTag(Scanner scanner)
private static boolean
HtmlInlineParser. tryProcessingInstruction(Scanner scanner)
-
Uses of Scanner in org.commonmark.internal.util
Methods in org.commonmark.internal.util with parameters of type Scanner Modifier and Type Method Description static boolean
LinkScanner. scanLinkDestination(Scanner scanner)
Attempt to scan a link destination, stopping after the destination or returning false.private static boolean
LinkScanner. scanLinkDestinationWithBalancedParens(Scanner scanner)
static boolean
LinkScanner. scanLinkLabelContent(Scanner scanner)
Attempt to scan the contents of a link label (inside the brackets), stopping after the content or returning false.static boolean
LinkScanner. scanLinkTitle(Scanner scanner)
static boolean
LinkScanner. scanLinkTitleContent(Scanner scanner, char endDelimiter)
-
Uses of Scanner in org.commonmark.parser.beta
Methods in org.commonmark.parser.beta that return Scanner Modifier and Type Method Description static Scanner
Scanner. of(SourceLines lines)
Scanner
InlineParserState. scanner()
Return a scanner for the input for the current position (on the trigger character that the inline parser was added for).Methods in org.commonmark.parser.beta with parameters of type Scanner Modifier and Type Method Description LinkResult
LinkProcessor. process(LinkInfo linkInfo, Scanner scanner, InlineParserContext context)
-