compile.js 209 B

12345678910
  1. 'use strict';
  2. var compact = require('mdast-util-compact');
  3. module.exports = compile;
  4. /* Stringify the given tree. */
  5. function compile() {
  6. return this.visit(compact(this.tree, this.options.commonmark));
  7. }