All files / scripts/validators/executive-brief-translations/counters mermaid-blocks.ts

100% Statements 2/2
50% Branches 1/2
100% Functions 1/1
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18                            23x 23x    
/**
 * @module scripts/validators/executive-brief-translations/counters/mermaid-blocks
 * @description Count Mermaid fenced code blocks specifically.
 *
 *              Rule census: extracted from
 *              `scripts/validate-executive-brief-translations.ts` lines
 *              157–161. Logic is byte-identical to the original.
 *
 * @author Hack23 AB
 * @license Apache-2.0
 */
 
/** Count Mermaid fenced code blocks specifically. */
export function countMermaidBlocks(md: string): number {
  const matches = md.match(/^```mermaid\b/gm);
  return matches ? matches.length : 0;
}