UNPKG

@k9n/scully-plugin-toc

Version:

This plugin for scully provides a postRenderer to generate a table of contents for the rendered route content

10 lines (8 loc) 230 B
export type Level = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; export interface TocConfig { trailingSlash?: boolean; blogAreaSelector?: string; insertSelector?: string; level?: Level[]; scrollIntoViewOnClick?: boolean; }