16 lines
306 B
JavaScript
16 lines
306 B
JavaScript
const mdAbbr = require('markdown-it-abbr')
|
|
|
|
// ------------------------------------
|
|
// Markdown - Abbreviations
|
|
// ------------------------------------
|
|
|
|
module.exports = {
|
|
key: 'markdown/abbreviations',
|
|
title: 'Abbreviations',
|
|
dependsOn: [],
|
|
props: [],
|
|
init (md, conf) {
|
|
md.use(mdAbbr)
|
|
}
|
|
}
|