<div align="center">
npm install docsify-footnotejs
`
然后即可生效:
`markdown
tf[^1]
[^1]: Test File
or
tf^[Test File]
or
tf1[^2]
[^2]: Test File1
`
!demo-1
配置
`javascript
window.$docsify = {
docsifyFootnote: {
// 当设置为true时,可以隐藏子锚点编号
// https://github.com/Robert-Du0001/docsify-footnote/pull/5
hideSubAnchor: true,
}
}
``