Uses of Class
org.commonmark.parser.SourceLine
-
Packages that use SourceLine Package Description org.commonmark.ext.front.matter.internal org.commonmark.ext.gfm.tables.internal 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 SourceLine in org.commonmark.ext.front.matter.internal
Methods in org.commonmark.ext.front.matter.internal with parameters of type SourceLine Modifier and Type Method Description void
YamlFrontMatterBlockParser. addLine(SourceLine line)
-
Uses of SourceLine in org.commonmark.ext.gfm.tables.internal
Fields in org.commonmark.ext.gfm.tables.internal with type parameters of type SourceLine Modifier and Type Field Description private java.util.List<SourceLine>
TableBlockParser. rowLines
Methods in org.commonmark.ext.gfm.tables.internal that return types with arguments of type SourceLine Modifier and Type Method Description private static java.util.List<SourceLine>
TableBlockParser. split(SourceLine line)
Methods in org.commonmark.ext.gfm.tables.internal with parameters of type SourceLine Modifier and Type Method Description void
TableBlockParser. addLine(SourceLine line)
private TableCell
TableBlockParser. parseCell(SourceLine cell, int column, InlineParser inlineParser)
private static java.util.List<SourceLine>
TableBlockParser. split(SourceLine line)
Constructors in org.commonmark.ext.gfm.tables.internal with parameters of type SourceLine Constructor Description TableBlockParser(java.util.List<TableBlockParser.TableCellInfo> columns, SourceLine headerLine)
-
Uses of SourceLine in org.commonmark.internal
Fields in org.commonmark.internal declared as SourceLine Modifier and Type Field Description private SourceLine
DocumentParser. line
Fields in org.commonmark.internal with type parameters of type SourceLine Modifier and Type Field Description private java.util.List<SourceLine>
LinkReferenceDefinitionParser. paragraphLines
Methods in org.commonmark.internal that return SourceLine Modifier and Type Method Description SourceLine
DocumentParser. getLine()
Methods in org.commonmark.internal with parameters of type SourceLine Modifier and Type Method Description void
DocumentBlockParser. addLine(SourceLine line)
void
FencedCodeBlockParser. addLine(SourceLine line)
void
HtmlBlockParser. addLine(SourceLine line)
void
IndentedCodeBlockParser. addLine(SourceLine line)
void
ParagraphParser. addLine(SourceLine line)
private static HeadingParser
HeadingParser. getAtxHeading(SourceLine line)
void
LinkReferenceDefinitionParser. parse(SourceLine line)
-
Uses of SourceLine in org.commonmark.parser
Fields in org.commonmark.parser with type parameters of type SourceLine Modifier and Type Field Description private java.util.List<SourceLine>
SourceLines. lines
Methods in org.commonmark.parser that return SourceLine Modifier and Type Method Description static SourceLine
SourceLine. of(java.lang.CharSequence content, SourceSpan sourceSpan)
SourceLine
SourceLine. substring(int beginIndex, int endIndex)
Methods in org.commonmark.parser that return types with arguments of type SourceLine Modifier and Type Method Description java.util.List<SourceLine>
SourceLines. getLines()
Methods in org.commonmark.parser with parameters of type SourceLine Modifier and Type Method Description void
SourceLines. addLine(SourceLine sourceLine)
static SourceLines
SourceLines. of(SourceLine sourceLine)
Method parameters in org.commonmark.parser with type arguments of type SourceLine Modifier and Type Method Description static SourceLines
SourceLines. of(java.util.List<SourceLine> sourceLines)
-
Uses of SourceLine in org.commonmark.parser.beta
Fields in org.commonmark.parser.beta declared as SourceLine Modifier and Type Field Description private SourceLine
Scanner. line
Fields in org.commonmark.parser.beta with type parameters of type SourceLine Modifier and Type Field Description private java.util.List<SourceLine>
Scanner. lines
Methods in org.commonmark.parser.beta with parameters of type SourceLine Modifier and Type Method Description private void
Scanner. setLine(SourceLine line)
Constructor parameters in org.commonmark.parser.beta with type arguments of type SourceLine Constructor Description Scanner(java.util.List<SourceLine> lines, int lineIndex, int index)
-
Uses of SourceLine in org.commonmark.parser.block
Methods in org.commonmark.parser.block that return SourceLine Modifier and Type Method Description SourceLine
ParserState. getLine()
Methods in org.commonmark.parser.block with parameters of type SourceLine Modifier and Type Method Description void
AbstractBlockParser. addLine(SourceLine line)
void
BlockParser. addLine(SourceLine line)
Add the part of a line that belongs to this block parser to parse (i.e.
-