UNPKG

markdown-it-chain

Version:

A chaining API like webpack-chain but for markdown-it.

19 lines (16 loc) 319 B
const ChainedMap = require('webpack-chain/src/ChainedMap') module.exports = class extends ChainedMap { constructor (parent) { super(parent) this.extend([ 'html', 'xhtmlOut', 'breaks', 'langPrefix', 'linkify', 'typographer', 'quotes', 'highlight' ]) } }