blob: 8c8530471b96c8f968e5c0be169f003b15cfd995 [file] [log] [blame]
'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))
}