Expand description
HTML block parsing utilities.
Functions§
- is_
html_ block_ tag_ name - Whether
name(case-insensitive) is one of the HTML block-level tags recognized by CommonMark §4.6 type-6. - is_
pandoc_ block_ tag_ name - Whether
name(case-insensitive) is one of pandoc’sblockHtmlTags— the narrower set pandoc-markdown’shtmlBlockreader recognizes. Used by the pandoc-native projector’ssplit_html_block_by_tagsto decide whether a complete HTML tag inside anHTML_BLOCKshould split the block — block-level tags emit as separateRawBlockentries; inline tags stay inline in the surroundingPlaincontent. - is_
pandoc_ inline_ block_ tag_ name - Whether
name(case-insensitive) is one of pandoc’seitherBlockOrInlinetags (excluding void elements andscript; see [PANDOC_INLINE_BLOCK_TAGS]). - is_
pandoc_ void_ block_ tag_ name - Whether
name(case-insensitive) is one of pandoc’s voideitherBlockOrInlinetags (area,embed,source,track).