使用Vuepress自动生成markdown的目录时,一旦标题有数字时便无法跳转的问题解决
问题描述最近在用vuepress写网页文档的时候发现了一个问题,就是我用markdown书写的标题中如果有类似 1.2 XXX 的标题时,当使用官方文档给出的:[[toc]]自动生成目录时,最终生成的网页,含有数字的标题是无法跳转到相应位置的。问题分析查看官方开发文档后发现,这跟vuepress的默认配置有关,从如图1所示markdown.slugify函数可以看到,我...
·
问题描述
最近在用vuepress写网页文档的时候发现了一个问题,就是我用markdown书写的标题中如果有类似 1.2 XXX 的标题时,当使用官方文档给出的:
[[toc]]
自动生成目录时,最终生成的网页,含有数字的标题是无法跳转到相应位置的。
问题分析
查看官方开发文档后发现,这跟vuepress的默认配置有关,从如图1所示markdown.slugify函数可以看到,我们需要修改其配置。
点击图中的source,跳转到GitHub的工程页面,可以看到如下的代码段:
// string.js slugify drops non ascii chars so we have to
// use a custom implementation here
// @ts-ignore
import { remove as removeDiacritics } from 'diacritics'
// eslint-disable-next-line no-control-regex
const rControl = /[\u0000-\u001f]/g
const rSpecial = /[\s~`!@#$%^&*()\-_+=[\]{}|\\;:"'<>,.?/]+/g
export = function slugify (str: string): string {
return removeDiacritics(str)
// Remove control characters
.replace(rControl, '')
// Replace special characters
.replace(rSpecial, '-')
// Remove continous separators
.replace(/\-{2,}/g, '-')
// Remove prefixing and trailing separtors
.replace(/^\-+|\-+$/g, '')
// ensure it doesn't start with a number (#121)
.replace(/^(\d)/, '_$1')
// lowercase
.toLowerCase()
}
看到了其中有一句ensure it doesn't start with a number (#121),可以知道这就是问题所在:
// ensure it doesn't start with a number (#121)
.replace(/^(\d)/, '_$1')
我们的标题数字被这句代码替换掉了,导致最终的链接根本没有指向标题,故无法跳转。
问题解决
根据GitHub页面上的配置路径,找到自己安装的vuepress模块的配置路径,我的路径是:
D:\my_program\nodejs\node_global\node_modules\vuepress\node_modules\@vuepress\shared-utils\lib\slugify.js
打开 slugify.js 文件,并将上述的代码段注释掉,问题即可解决。
更多推荐
已为社区贡献1条内容
所有评论(0)