Rob
Rob
NNuxt
Created by Rob on 2/24/2025 in #❓・help
Nuxt Content - API for Remark/Rehype extension configuration options
I would like to change the default "Footnotes" label to "Notes". I'm not sure how this is exposed in nuxt.config. It's not clear which extensions are being used and how to access their configuration API. I have tried options like this with no luck
"remark-gfm": {
gfmFootnoteHtml: {
HtmlOptions: {
label: "Notes",
}
},
},

"remark-gfm": {
gfmFootnoteHtml: {
HtmlOptions: {
label: "Notes",
}
},
},

"mdast-util-gfm-footnote": {
htmlOptions: {
label: 'Notes'
}
}

"mdast-util-gfm-footnote": {
htmlOptions: {
label: 'Notes'
}
}

5 replies