@astrojs/starlight
Version:
Build beautiful, high-performance documentation websites with Astro
20 lines (17 loc) • 759 B
text/typescript
import { z } from 'astro/zod';
const defaults = { minHeadingLevel: 2, maxHeadingLevel: 3 };
export const TableOfContentsSchema = () =>
z
.union([
z.object({
/** The level to start including headings at in the table of contents. Default: 2. */
minHeadingLevel: z.number().int().min(1).max(6).optional().default(2),
/** The level to stop including headings at in the table of contents. Default: 3. */
maxHeadingLevel: z.number().int().min(1).max(6).optional().default(3),
}),
z.boolean().transform((enabled) => (enabled ? defaults : false)),
])
.default(defaults)
.refine((toc) => (toc ? toc.minHeadingLevel <= toc.maxHeadingLevel : true), {
message: 'minHeadingLevel must be less than or equal to maxHeadingLevel',
});