--- import type { MarkdownHeading } from 'astro'; import { siteConfig } from "../../config"; interface Props { class?: string headings: MarkdownHeading[] } let { headings = [] } = Astro.props; // generate random headings, for testing // headings = [ // { text: 'Heading 1', depth: 1, slug: 'heading-1' }, // { text: 'Heading 2', depth: 2, slug: 'heading-2' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 2', depth: 2, slug: 'heading-2' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 1', depth: 1, slug: 'heading-1' }, // { text: 'Heading 2', depth: 2, slug: 'heading-2' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 2', depth: 2, slug: 'heading-2' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // { text: 'Heading 3', depth: 3, slug: 'heading-3' }, // ] 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; const maxLevel = siteConfig.toc.depth; ---
{headings.filter((heading) => heading.depth < minDepth + maxLevel).map((heading) =>
{heading.depth == minDepth && heading1Count++} {heading.depth == minDepth + 1 &&
} {heading.depth == minDepth + 2 &&
}
{removeTailingHash(heading.text)}
)}