Package com.vladsch.flexmark.parser.core
Class FencedCodeBlockParser
- java.lang.Object
-
- com.vladsch.flexmark.parser.block.AbstractBlockParser
-
- com.vladsch.flexmark.parser.core.FencedCodeBlockParser
-
- All Implemented Interfaces:
BlockParser
public class FencedCodeBlockParser extends AbstractBlockParser
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classFencedCodeBlockParser.BlockFactorystatic classFencedCodeBlockParser.Factory
-
Field Summary
Fields Modifier and Type Field Description private FencedCodeBlockblockprivate static java.util.regex.PatternCLOSING_FENCEprivate booleancodeContentBlockprivate BlockContentcontentprivate charfenceCharprivate intfenceIndentprivate intfenceLengthprivate intfenceMarkerIndentprivate booleanmatchingCloserprivate static java.util.regex.PatternOPENING_FENCE
-
Constructor Summary
Constructors Constructor Description FencedCodeBlockParser(DataHolder options, char fenceChar, int fenceLength, int fenceIndent, int fenceMarkerIndent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddLine(ParserState state, BasedSequence line)Add another line to the blockvoidcloseBlock(ParserState state)BlockgetBlock()intgetFenceIndent()intgetFenceMarkerIndent()booleanisPropagatingLastBlankLine(BlockParser lastMatchedBlockParser)should be overridden in BlockQuote, FencedCode and ListItemBlockContinuetryContinue(ParserState state)See if the block parser can continue parsing the current block-
Methods inherited from class com.vladsch.flexmark.parser.block.AbstractBlockParser
breakOutOnDoubleBlankLine, canContain, canInterruptBy, finalizeClosedBlock, getBlockContent, getDataHolder, isClosed, isContainer, isInterruptible, isParagraphParser, isRawText, parseInlines, removeBlankLines
-
-
-
-
Field Detail
-
OPENING_FENCE
private static final java.util.regex.Pattern OPENING_FENCE
-
CLOSING_FENCE
private static final java.util.regex.Pattern CLOSING_FENCE
-
block
private final FencedCodeBlock block
-
content
private BlockContent content
-
fenceChar
private final char fenceChar
-
fenceLength
private final int fenceLength
-
fenceIndent
private final int fenceIndent
-
fenceMarkerIndent
private final int fenceMarkerIndent
-
matchingCloser
private final boolean matchingCloser
-
codeContentBlock
private final boolean codeContentBlock
-
-
Constructor Detail
-
FencedCodeBlockParser
public FencedCodeBlockParser(DataHolder options, char fenceChar, int fenceLength, int fenceIndent, int fenceMarkerIndent)
-
-
Method Detail
-
getBlock
public Block getBlock()
- Returns:
- the block parser's block node instance
-
getFenceIndent
public int getFenceIndent()
-
getFenceMarkerIndent
public int getFenceMarkerIndent()
-
tryContinue
public BlockContinue tryContinue(ParserState state)
Description copied from interface:BlockParserSee if the block parser can continue parsing the current block- Parameters:
state- current parsing state- Returns:
- block continue instance
-
addLine
public void addLine(ParserState state, BasedSequence line)
Description copied from interface:BlockParserAdd another line to the block- Specified by:
addLinein interfaceBlockParser- Overrides:
addLinein classAbstractBlockParser- Parameters:
state- parser stateline- line sequence
-
isPropagatingLastBlankLine
public boolean isPropagatingLastBlankLine(BlockParser lastMatchedBlockParser)
Description copied from class:AbstractBlockParsershould be overridden in BlockQuote, FencedCode and ListItem- Specified by:
isPropagatingLastBlankLinein interfaceBlockParser- Overrides:
isPropagatingLastBlankLinein classAbstractBlockParser- Parameters:
lastMatchedBlockParser- the last matched block parser instance- Returns:
- true if the blank line should be propagated to parent
-
closeBlock
public void closeBlock(ParserState state)
-
-