Uses of Class
org.commonmark.parser.SourceLines
-
Packages that use SourceLines Package Description org.commonmark.internal org.commonmark.parser Parsing input text to AST nodes (seeParser)org.commonmark.parser.beta Experimental APIs to use for extensions.org.commonmark.parser.block Types for extending block parsing -
-
Uses of SourceLines in org.commonmark.internal
Fields in org.commonmark.internal declared as SourceLines Modifier and Type Field Description private SourceLinesHeadingParser. contentMethods in org.commonmark.internal that return SourceLines Modifier and Type Method Description SourceLinesDocumentParser.MatchedBlockParserImpl. getParagraphLines()(package private) SourceLinesLinkReferenceDefinitionParser. getParagraphLines()SourceLinesParagraphParser. getParagraphLines()Methods in org.commonmark.internal with parameters of type SourceLines Modifier and Type Method Description voidInlineParserImpl. parse(SourceLines lines, Node block)Parse content in block into inline children, appending them to the block node.(package private) voidInlineParserImpl. reset(SourceLines lines)private TextInlineParserImpl. text(SourceLines sourceLines)Constructors in org.commonmark.internal with parameters of type SourceLines Constructor Description HeadingParser(int level, SourceLines content) -
Uses of SourceLines in org.commonmark.parser
Methods in org.commonmark.parser that return SourceLines Modifier and Type Method Description static SourceLinesSourceLines. empty()static SourceLinesSourceLines. of(java.util.List<SourceLine> sourceLines)static SourceLinesSourceLines. of(SourceLine sourceLine)Methods in org.commonmark.parser with parameters of type SourceLines Modifier and Type Method Description voidInlineParser. parse(SourceLines lines, Node node) -
Uses of SourceLines in org.commonmark.parser.beta
Methods in org.commonmark.parser.beta that return SourceLines Modifier and Type Method Description SourceLinesScanner. getSource(Position begin, Position end)Methods in org.commonmark.parser.beta with parameters of type SourceLines Modifier and Type Method Description static ScannerScanner. of(SourceLines lines) -
Uses of SourceLines in org.commonmark.parser.block
Methods in org.commonmark.parser.block that return SourceLines Modifier and Type Method Description SourceLinesMatchedBlockParser. getParagraphLines()Returns the current paragraph lines if the matched block is a paragraph.
-