abbreviations.js 306 B

123456789101112131415
  1. const mdAbbr = require('markdown-it-abbr')
  2. // ------------------------------------
  3. // Markdown - Abbreviations
  4. // ------------------------------------
  5. module.exports = {
  6. key: 'markdown/abbreviations',
  7. title: 'Abbreviations',
  8. dependsOn: [],
  9. props: [],
  10. init (md, conf) {
  11. md.use(mdAbbr)
  12. }
  13. }