fix: support footnotes on dynamic pages

This commit is contained in:
Cory Dransfeldt 2024-10-29 20:09:48 -07:00
parent 7110737b47
commit 5b433d653b
No known key found for this signature in database

View file

@ -1,4 +1,6 @@
import markdownIt from "markdown-it";
import markdownItAnchor from "markdown-it-anchor";
import markdownItFootnote from "markdown-it-footnote";
export const formatDate = (date) =>
new Date(date).toLocaleDateString("en-US", {
@ -6,4 +8,13 @@ export const formatDate = (date) =>
month: "long",
day: "numeric",
});
export const md = markdownIt({ html: true, linkify: true });
md.use(markdownItAnchor, {
level: [1, 2],
permalink: markdownItAnchor.permalink.headerLink({
safariReaderFix: true,
}),
});
md.use(markdownItFootnote);