We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23ef6c9 commit e658d92Copy full SHA for e658d92
src/serialize.js
@@ -158,7 +158,13 @@ export async function pageProps(context, args) {
158
.filter((t) => t.type === 'heading')
159
.filter((t) => t.depth <= tocMaxDepth)
160
.map((heading) => {
161
- heading.slug = slugger.slug(heading.text)
+ 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
+ }
168
return heading
169
})
170
0 commit comments