Shared utilities used by block-level parser rules.
This module provides the core building blocks that most block rules
depend on:
canApplyBlockRule -- fast pre-check for whether a rule's start
tokens match the current token.
parseBlocksUntil -- the main block-level content parser that
iterates rules until a close condition is met (used by div, collapsible,
tabview, iftags, align, etc.).
parseInlineContentUntil -- similar to parseBlocksUntil but
without paragraph wrapping, used for div_ paragraph-strip mode.
Shared utilities used by block-level parser rules.
This module provides the core building blocks that most block rules depend on:
parseBlocksUntilbut without paragraph wrapping, used fordiv_paragraph-strip mode.Re-exports filterUnsafeAttributes and parseBlockName from the shared
../utilsmodule for backward compatibility.