Not sure if pongo2 is maintained anymore at this point, however the upgrade from blackfriday v1 to v2 is quite simple (rather than MarkdownCommon, you'd use Run). May also suggest pairing it with bluemonday (or at least providing it as an option):
bluemonday.UGCPolicy().SanitizeBytes(blackfriday.Run([]byte("content here")))
Not sure if pongo2 is maintained anymore at this point, however the upgrade from blackfriday v1 to v2 is quite simple (rather than
MarkdownCommon, you'd useRun). May also suggest pairing it with bluemonday (or at least providing it as an option):