--- import type { MarkdownHeading } from 'astro'; interface Props { class?: string headings: MarkdownHeading[] } const { headings = [] } = Astro.props; // generate random headings, for testing /* for (let i = 0; i < 50; i++) { headings.push({ text: `Heading ${i + 1}`, depth: Math.floor(Math.random() * 3) + 1, slug: `heading-${i + 1}` }) } */ let minDepth = 10; for (const heading of headings) { minDepth = Math.min(minDepth, heading.depth); } const className = Astro.props.class const removeTailingHash = (text: string) => { let lastIndexOfHash = text.lastIndexOf('#'); if (lastIndexOfHash != text.length - 1) { return text; } return text.substring(0, lastIndexOfHash); } let heading1Count = 1; ---