Skip to content

Commit 23ef6c9

Browse files
feat: add max level for toc headings
1 parent cba361e commit 23ef6c9

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ Can be used if the docs are not located in the root of the repository.
118118
useMDX: true,
119119
```
120120
121+
Limit the level of headings for the Table of Contents
122+
123+
```jsx
124+
tocMaxDepth: 3,
125+
```
126+
121127
Switch from Markdown to MDX.
122128
123129
```jsx

src/serialize.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,15 @@ const defaults = {
3737
repo: null,
3838
tag: null,
3939
assetsDestination: null,
40-
debug: process.env.DEBUG === true
40+
debug: process.env.DEBUG === true,
41+
tocMaxDepth: 10
4142
}
4243

4344
export async function pageProps(context, args) {
4445
const options = { ...defaults, ...args }
4546
const params = context.params
46-
const { docsFolder, trailingSlash, skipPathPrefix, useMDX } = options
47+
const { docsFolder, trailingSlash, skipPathPrefix, useMDX, tocMaxDepth } =
48+
options
4749

4850
const slugger = new GithubSlugger()
4951
const manifest = await fetchDocsManifest(docsFolder, options).catch(
@@ -154,6 +156,7 @@ export async function pageProps(context, args) {
154156
const markdownTokens = marked.lexer(content)
155157
const headings = markdownTokens
156158
.filter((t) => t.type === 'heading')
159+
.filter((t) => t.depth <= tocMaxDepth)
157160
.map((heading) => {
158161
heading.slug = slugger.slug(heading.text)
159162
return heading

0 commit comments

Comments
 (0)