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 SourceLines
HeadingParser. content
Methods in org.commonmark.internal that return SourceLines Modifier and Type Method Description SourceLines
DocumentParser.MatchedBlockParserImpl. getParagraphLines()
(package private) SourceLines
LinkReferenceDefinitionParser. getParagraphLines()
SourceLines
ParagraphParser. getParagraphLines()
Methods in org.commonmark.internal with parameters of type SourceLines Modifier and Type Method Description void
InlineParserImpl. parse(SourceLines lines, Node block)
Parse content in block into inline children, appending them to the block node.(package private) void
InlineParserImpl. reset(SourceLines lines)
private Text
InlineParserImpl. 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 SourceLines
SourceLines. empty()
static SourceLines
SourceLines. of(java.util.List<SourceLine> sourceLines)
static SourceLines
SourceLines. of(SourceLine sourceLine)
Methods in org.commonmark.parser with parameters of type SourceLines Modifier and Type Method Description void
InlineParser. 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 SourceLines
Scanner. getSource(Position begin, Position end)
Methods in org.commonmark.parser.beta with parameters of type SourceLines Modifier and Type Method Description static Scanner
Scanner. 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 SourceLines
MatchedBlockParser. getParagraphLines()
Returns the current paragraph lines if the matched block is a paragraph.
-