Package io.markdom.handler
Interface MarkdomFilter
-
- All Known Implementing Classes:
AbstractMarkdomFilter,IdleMarkdomFilter,NodeKindMarkdomFilter,NodeTypeMarkdomFilter
public interface MarkdomFilter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleantestCodeBlock(String code, Optional<String> hint)booleantestCodeContent(String code)booleantestCommentBlock()booleantestDivisionBlock()booleantestEmphasisContent(MarkdomEmphasisLevel level)booleantestHeadingBlock(MarkdomHeadingLevel level)booleantestImageContent(String uri, Optional<String> title, Optional<String> alternative)booleantestLineBreakContent(Boolean hard)booleantestLinkContent(String uri, Optional<String> title)booleantestOrderedListBlock(Integer startIndex)booleantestParagraphBlock()booleantestQuoteBlock()booleantestTextContent(String text)booleantestUnorderedListBlock()
-
-
-
Method Detail
-
testCommentBlock
boolean testCommentBlock()
-
testDivisionBlock
boolean testDivisionBlock()
-
testHeadingBlock
boolean testHeadingBlock(MarkdomHeadingLevel level)
-
testOrderedListBlock
boolean testOrderedListBlock(Integer startIndex)
-
testParagraphBlock
boolean testParagraphBlock()
-
testQuoteBlock
boolean testQuoteBlock()
-
testUnorderedListBlock
boolean testUnorderedListBlock()
-
testCodeContent
boolean testCodeContent(String code)
-
testEmphasisContent
boolean testEmphasisContent(MarkdomEmphasisLevel level)
-
testImageContent
boolean testImageContent(String uri, Optional<String> title, Optional<String> alternative)
-
testLineBreakContent
boolean testLineBreakContent(Boolean hard)
-
testTextContent
boolean testTextContent(String text)
-
-