fix: static footnote display

This commit is contained in:
Cory Dransfeldt 2024-06-29 15:23:07 -07:00
parent 653035c7c8
commit e1520d2cd2
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -99,7 +99,7 @@ export default {
)
md.renderer.rules.footnote_open = (tokens, idx) => {
const id = tokens[idx].meta.id + 1
return `<li id="fn${id}" class="footnote-item">${id}. `
return `<li id="fn${id}" class="footnote-item"> `
}
md.renderer.rules.footnote_anchor = () => ''