Skip to content

Instantly share code, notes, and snippets.

View maciejpedzich's full-sized avatar
🫠
afk

Maciej Pędzich maciejpedzich

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