mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
const mdExpandTabs = require('markdown-it-expand-tabs')
|
|
const _ = require('lodash')
|
|
|
|
// ------------------------------------
|
|
// Markdown - Expand Tabs
|
|
// ------------------------------------
|
|
|
|
module.exports = {
|
|
init (md, conf) {
|
|
md.use(mdExpandTabs, {
|
|
tabWidth: _.toInteger(conf.tabWidth || 4)
|
|
})
|
|
}
|
|
}
|