cpuguy83 / go-md2man

MIT License
231 stars 64 forks source link

Migrate to a maintained markdown processor #106

Open mrueg opened 11 months ago

mrueg commented 11 months ago

https://github.com/russross/blackfriday/tree/v2 was 3 years ago, it might make sense to move to a different markdown processor.

This seems to be a maintained fork of blackfriday: https://github.com/gomarkdown/markdown/

corhere commented 1 month ago

github.com/gomarkdown/markdown is not a drop-in replacement (ast.Node is an interface rather than a struct) so other markdown parsers would be well worth considering, too. https://github.com/yuin/goldmark looks like a promising option, and is CommonMark compliant!