mirror of https://github.com/Requarks/wiki.git
11 lines
225 B
11 lines
225 B
const mdFootnote = require('markdown-it-footnote')
|
|
|
|
// ------------------------------------
|
|
// Markdown - Footnotes
|
|
// ------------------------------------
|
|
|
|
module.exports = {
|
|
init (md, conf) {
|
|
md.use(mdFootnote)
|
|
}
|
|
}
|