11 lines
202 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
'use strict'
var compact = require('mdast-util-compact')
module.exports = compile
// Stringify the given tree.
function compile() {
return this.visit(compact(this.tree, this.options.commonmark))
}