.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / remark-stringify / lib / visitors / footnote.js
1 'use strict';
2
3 module.exports = footnote;
4
5 function footnote(node) {
6   return '[^' + this.all(node).join('') + ']';
7 }