Skip to content

Commit 5f7e199

Browse files
Hyunje Junyyx990803
Hyunje Jun
authored andcommitted
fix: use header's slug as it is if possible (#119)
1 parent c4772f4 commit 5f7e199

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/util/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,11 @@ exports.extractHeaders = (content, include = [], md) => {
5959
tokens.forEach((t, i) => {
6060
if (t.type === 'heading_open' && include.includes(t.tag)) {
6161
const title = tokens[i + 1].content
62+
const slug = t.attrs.find(([name]) => name === 'id')[1]
6263
res.push({
6364
level: parseInt(t.tag.slice(1), 10),
6465
title,
65-
slug: md.slugify(title)
66+
slug: slug || md.slugify(title)
6667
})
6768
}
6869
})

0 commit comments

Comments
 (0)