Replies: 1 comment
-
goldmark's one of the most important policy is 'Depends only on standard libraries.' (as README says) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, this code base has a custom Unicode folding implemented in
util/unicode_case_folding.go
.But this feature has already been implemented with golang.org/x/text/cases.
I'm proposing switching to the golang/x package because, for one, the
golang.org/x/text/cases
implementation is much performant and smaller. We're usinggoldmark
in our application, and it is the biggest contributor to the binary size (themap
in theutils
package).Beta Was this translation helpful? Give feedback.
All reactions