Skip to content

Instantly share code, notes, and snippets.

View TerrniT's full-sized avatar
🎯
Focusing

Gleb Kotovsky TerrniT

🎯
Focusing
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[];
};