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 LinkResultFootnoteLinkProcessor. 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 ScannerInlineParserImpl. scannerMethods in org.commonmark.internal that return Scanner Modifier and Type Method Description ScannerInlineParserImpl. scanner()Methods in org.commonmark.internal with parameters of type Scanner Modifier and Type Method Description private booleanLinkReferenceDefinitionParser. destination(Scanner scanner)private booleanLinkReferenceDefinitionParser. label(Scanner scanner)private static InlineParserImpl.DestinationTitleInlineParserImpl. parseInlineDestinationTitle(Scanner scanner)Try to parse the destination and an optional title for an inline link/image.private static java.lang.StringInlineParserImpl. parseLinkDestination(Scanner scanner)Attempt to parse link destination, returning the string or null if no match.(package private) static java.lang.StringInlineParserImpl. parseLinkLabel(Scanner scanner)Attempt to parse a link label, returning the label between the brackets or null.private static java.lang.StringInlineParserImpl. parseLinkTitle(Scanner scanner)Attempt to parse link title (sans quotes), returning the string or null if no match.private booleanLinkReferenceDefinitionParser. startDefinition(Scanner scanner)private booleanLinkReferenceDefinitionParser. startTitle(Scanner scanner)private booleanLinkReferenceDefinitionParser. 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 ParsedInlineEntityInlineParser. entity(Scanner scanner, Position start)private static ParsedInlineHtmlInlineParser. htmlInline(Position start, Scanner scanner)private static LinkResultCoreLinkProcessor. process(LinkInfo linkInfo, Scanner scanner, java.lang.String destination, java.lang.String title)LinkResultCoreLinkProcessor. process(LinkInfo linkInfo, Scanner scanner, InlineParserContext context)private static booleanHtmlInlineParser. tryCdata(Scanner scanner)private static booleanHtmlInlineParser. tryClosingTag(Scanner scanner)private static booleanHtmlInlineParser. tryComment(Scanner scanner)private static booleanHtmlInlineParser. tryDeclaration(Scanner scanner)private static booleanHtmlInlineParser. tryOpenTag(Scanner scanner)private static booleanHtmlInlineParser. 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 booleanLinkScanner. scanLinkDestination(Scanner scanner)Attempt to scan a link destination, stopping after the destination or returning false.private static booleanLinkScanner. scanLinkDestinationWithBalancedParens(Scanner scanner)static booleanLinkScanner. scanLinkLabelContent(Scanner scanner)Attempt to scan the contents of a link label (inside the brackets), stopping after the content or returning false.static booleanLinkScanner. scanLinkTitle(Scanner scanner)static booleanLinkScanner. 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 ScannerScanner. of(SourceLines lines)ScannerInlineParserState. 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 LinkResultLinkProcessor. process(LinkInfo linkInfo, Scanner scanner, InlineParserContext context)
-