osteele / gojekyll

A fast Go implementation of the Jekyll blogging engine
MIT License
332 stars 14 forks source link

Enable support for footnotes in markdown files to match jekyll behavior #58

Closed sirwart closed 6 months ago

sirwart commented 6 months ago

I noticed that my blog that the footnotes I had in my jekyll blog were no longer being generated from the markdown, and tracked it down to the flags that were being sent to blackfriday didn't enable footnotes. The footnote HTML generated by blackfriday doesn't 100% match what jekyll generates, but it's close enough that you can make it match with a single CSS rule.

Checklist

danog commented 6 months ago

Thanks!