footnote-reference.js 128 B

1234567
  1. 'use strict';
  2. module.exports = footnoteReference;
  3. function footnoteReference(node) {
  4. return '[^' + node.identifier + ']';
  5. }