Skip to content

Commit

Permalink
remark-numbered-footnotes: build dist
Browse files Browse the repository at this point in the history
  • Loading branch information
vhf committed Aug 29, 2019
1 parent 5d6ce93 commit 57d6754
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/remark-numbered-footnotes/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ function createIds(footnotes) {
footnotes[identifier] = Object.keys(footnotes).length + 1;
}

node.identifier = footnotes[identifier];
node.identifier = String(footnotes[identifier]);
node.label = String(footnotes[identifier]);
};
}

Expand All @@ -47,7 +48,8 @@ function replaceIds(footnotes) {
footnotes[identifier] = Object.keys(footnotes).length + 1;
}

node.identifier = footnotes[identifier];
node.identifier = String(footnotes[identifier]);
node.label = String(footnotes[identifier]);
};
}

Expand Down

0 comments on commit 57d6754

Please sign in to comment.