Feat/add weekly notes 10 (#10)

* fix: update some asset URLs

* feat: add weekly-notes-10

* feat(weekly-notes-10): Add a little more

* feat(weekly-notes-10: proof-reading

* feat(weekly-notes-10): more content

* feat(weekly-notes-10): proof-read

* feat: add `flow` class to footnotes section

* fix: center images within picture element

* feat(weekly-notes-10): more content and added skip
This commit is contained in:
Devin Haska 2024-11-21 22:34:46 -08:00 committed by GitHub
parent 6224499876
commit 08da130d58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 207 additions and 3 deletions

View file

@ -17,4 +17,14 @@ const markdown = markdownIt({
defaultLanguage: "plaintext",
});
markdown.renderer.rules.footnote_block_open = (_tokens, _idx, options) => {
return (
(options.xhtmlOut
? '<hr class="footnotes-sep" />\n'
: '<hr class="footnotes-sep">\n') +
'<section class="footnotes">\n' +
'<ol class="footnotes-list flow">\n'
);
};
module.exports = markdown;