Skip to content

Commit e658d92

Browse files
fix(toc): remove custom heading ids from text and have them in the slug
1 parent 23ef6c9 commit e658d92

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/serialize.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,13 @@ export async function pageProps(context, args) {
158158
.filter((t) => t.type === 'heading')
159159
.filter((t) => t.depth <= tocMaxDepth)
160160
.map((heading) => {
161-
heading.slug = slugger.slug(heading.text)
161+
const headerId = new RegExp(/\{#(.*)\}/)
162+
if (headerId.test(heading.text)) {
163+
heading.slug = slugger.slug(heading.text.match(headerId)[1])
164+
heading.text = heading.text.replace(/ \{#.*\}/, '')
165+
} else {
166+
heading.slug = slugger.slug(heading.text)
167+
}
162168
return heading
163169
})
164170

0 commit comments

Comments
 (0)