.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / remark-stringify / lib / macro / compile.js
1 'use strict';
2
3 var compact = require('mdast-util-compact');
4
5 module.exports = compile;
6
7 /* Stringify the given tree. */
8 function compile() {
9   return this.visit(compact(this.tree, this.options.commonmark));
10 }