1234567891011121314151617181920212223 |
- 'use strict'
- module.exports = stringify
- var toMarkdown = require('mdast-util-to-markdown')
- function stringify(options) {
- var self = this
- this.Compiler = compile
- function compile(tree) {
- return toMarkdown(
- tree,
- Object.assign({}, self.data('settings'), options, {
-
-
-
- extensions: self.data('toMarkdownExtensions') || []
- })
- )
- }
- }
|