Update .bashrc
[dotfiles/.git] / lib / visitors / footnote-reference.js
1 'use strict';
2
3 module.exports = footnoteReference;
4
5 function footnoteReference(node) {
6   return '[^' + node.identifier + ']';
7 }