Skip to content

Commit

Permalink
[zmarkdown] Fix footnotes random postfix (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
StaloneLab committed Mar 6, 2021
1 parent 42cec09 commit 3c89a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zmarkdown/config/html/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {

sanitize: require('../sanitize'),

postfixFootnotes: `-${shortid.generate()}`,
postfixFootnotes: (agg) => `${agg}-${shortid.generate()}`,

postProcessors: {
iframeWrappers: require('./iframe-wrappers'),
Expand Down

0 comments on commit 3c89a86

Please sign in to comment.