Uses of Class
org.commonmark.parser.block.BlockStart
-
Packages that use BlockStart Package Description org.commonmark.ext.footnotes.internal org.commonmark.ext.front.matter.internal org.commonmark.ext.gfm.tables.internal org.commonmark.internal org.commonmark.parser.block Types for extending block parsing -
-
Uses of BlockStart in org.commonmark.ext.footnotes.internal
Methods in org.commonmark.ext.footnotes.internal that return BlockStart Modifier and Type Method Description BlockStartFootnoteBlockParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser) -
Uses of BlockStart in org.commonmark.ext.front.matter.internal
Methods in org.commonmark.ext.front.matter.internal that return BlockStart Modifier and Type Method Description BlockStartYamlFrontMatterBlockParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser) -
Uses of BlockStart in org.commonmark.ext.gfm.tables.internal
Methods in org.commonmark.ext.gfm.tables.internal that return BlockStart Modifier and Type Method Description BlockStartTableBlockParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser) -
Uses of BlockStart in org.commonmark.internal
Subclasses of BlockStart in org.commonmark.internal Modifier and Type Class Description classBlockStartImplMethods in org.commonmark.internal that return BlockStart Modifier and Type Method Description BlockStartBlockStartImpl. atColumn(int newColumn)BlockStartBlockStartImpl. atIndex(int newIndex)BlockStartBlockStartImpl. replaceActiveBlockParser()BlockStartBlockStartImpl. replaceParagraphLines(int lines)BlockStartBlockQuoteParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser)BlockStartFencedCodeBlockParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser)BlockStartHeadingParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser)BlockStartHtmlBlockParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser)BlockStartIndentedCodeBlockParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser)BlockStartListBlockParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser)BlockStartThematicBreakParser.Factory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser) -
Uses of BlockStart in org.commonmark.parser.block
Methods in org.commonmark.parser.block that return BlockStart Modifier and Type Method Description abstract BlockStartBlockStart. atColumn(int newColumn)Continue parsing at the specified column (for tab handling).abstract BlockStartBlockStart. atIndex(int newIndex)Continue parsing at the specified index.static BlockStartBlockStart. none()Result for when there is no block start.static BlockStartBlockStart. of(BlockParser... blockParsers)Start block(s) with the specified parser(s).abstract BlockStartBlockStart. replaceActiveBlockParser()Deprecated.usereplaceParagraphLines(int)instead; please raise an issue if that doesn't work for you for some reason.abstract BlockStartBlockStart. replaceParagraphLines(int lines)Replace a number of lines from the current paragraph (as returned byMatchedBlockParser.getParagraphLines()) with the new block.BlockStartBlockParserFactory. tryStart(ParserState state, MatchedBlockParser matchedBlockParser)
-