( stateTracker: MarkdownBlockStateTracker, currentIndex: number, )
| 7 | * Uses optimized state tracking to avoid redundant computation. |
| 8 | */ |
| 9 | export function shouldStopAtMarkdownBlock( |
| 10 | stateTracker: MarkdownBlockStateTracker, |
| 11 | currentIndex: number, |
| 12 | ): boolean { |
| 13 | return stateTracker.shouldStopAtPosition(currentIndex); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Processes block nesting logic and returns updated state. |
no test coverage detected