renderer.js 225 B

1234567891011
  1. const mdFootnote = require('markdown-it-footnote')
  2. // ------------------------------------
  3. // Markdown - Footnotes
  4. // ------------------------------------
  5. module.exports = {
  6. init (md, conf) {
  7. md.use(mdFootnote)
  8. }
  9. }