Class YamlFrontMatterBlockParser
- java.lang.Object
-
- com.vladsch.flexmark.parser.block.AbstractBlockParser
-
- com.vladsch.flexmark.ext.yaml.front.matter.internal.YamlFrontMatterBlockParser
-
- All Implemented Interfaces:
BlockParser
public class YamlFrontMatterBlockParser extends AbstractBlockParser
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
YamlFrontMatterBlockParser.BlockFactory
static class
YamlFrontMatterBlockParser.Factory
-
Field Summary
Fields Modifier and Type Field Description private YamlFrontMatterBlock
block
private BlockContent
content
private BasedSequence
currentKey
private java.util.List<BasedSequence>
currentValues
private boolean
inLiteral
private boolean
inYAMLBlock
private static java.util.regex.Pattern
REGEX_BEGIN
private static java.util.regex.Pattern
REGEX_END
private static java.util.regex.Pattern
REGEX_METADATA
private static java.util.regex.Pattern
REGEX_METADATA_LIST
private static java.util.regex.Pattern
REGEX_METADATA_LITERAL
-
Constructor Summary
Constructors Constructor Description YamlFrontMatterBlockParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addLine(ParserState state, BasedSequence line)
Add another line to the blockvoid
closeBlock(ParserState state)
Block
getBlock()
boolean
isContainer()
void
parseInlines(InlineParser inlineParser)
Do inline processing for the block content using the given inline parser interfaceBlockContinue
tryContinue(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, isInterruptible, isParagraphParser, isPropagatingLastBlankLine, isRawText, removeBlankLines
-
-
-
-
Field Detail
-
REGEX_METADATA
private static final java.util.regex.Pattern REGEX_METADATA
-
REGEX_METADATA_LIST
private static final java.util.regex.Pattern REGEX_METADATA_LIST
-
REGEX_METADATA_LITERAL
private static final java.util.regex.Pattern REGEX_METADATA_LITERAL
-
REGEX_BEGIN
private static final java.util.regex.Pattern REGEX_BEGIN
-
REGEX_END
private static final java.util.regex.Pattern REGEX_END
-
inYAMLBlock
private boolean inYAMLBlock
-
inLiteral
private boolean inLiteral
-
currentKey
private BasedSequence currentKey
-
currentValues
private java.util.List<BasedSequence> currentValues
-
block
private YamlFrontMatterBlock block
-
content
private BlockContent content
-
-
Method Detail
-
getBlock
public Block getBlock()
- Returns:
- the block parser's block node instance
-
isContainer
public boolean isContainer()
- Specified by:
isContainer
in interfaceBlockParser
- Overrides:
isContainer
in classAbstractBlockParser
- Returns:
- true if the block that is parsed is a container (contains other blocks), or false if it's a leaf.
-
addLine
public void addLine(ParserState state, BasedSequence line)
Description copied from interface:BlockParser
Add another line to the block- Specified by:
addLine
in interfaceBlockParser
- Overrides:
addLine
in classAbstractBlockParser
- Parameters:
state
- parser stateline
- line sequence
-
closeBlock
public void closeBlock(ParserState state)
-
tryContinue
public BlockContinue tryContinue(ParserState state)
Description copied from interface:BlockParser
See if the block parser can continue parsing the current block- Parameters:
state
- current parsing state- Returns:
- block continue instance
-
parseInlines
public void parseInlines(InlineParser inlineParser)
Description copied from interface:BlockParser
Do inline processing for the block content using the given inline parser interface- Specified by:
parseInlines
in interfaceBlockParser
- Overrides:
parseInlines
in classAbstractBlockParser
- Parameters:
inlineParser
- instance of inline parser
-
-