Skip to content

Instantly share code, notes, and snippets.

View maciejpedzich's full-sized avatar

Maciej Pędzich maciejpedzich

View GitHub Profile
@maciejpedzich
maciejpedzich / TableOfContents.astro
Last active March 17, 2025 14:14
Astro Table Of Contents Component + Sample Usage
---
import type { MarkdownHeading } from 'astro';
type Props = {
headings: MarkdownHeading[];
};
type HeadingWithSubheadings = MarkdownHeading & {
subheadings: MarkdownHeading[];
};