Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Shivaram Lingamneni 7944871eb6 migrate additional dependencies to ergochat před 3 roky
..
.gitignore migrate additional dependencies to ergochat před 3 roky
LICENSE migrate additional dependencies to ergochat před 3 roky
README.md migrate additional dependencies to ergochat před 3 roky
confusables.go migrate additional dependencies to ergochat před 3 roky
tables.go migrate additional dependencies to ergochat před 3 roky
tweaks.go migrate additional dependencies to ergochat před 3 roky

README.md

Unicode confusables

This Go library implements the Skeleton algorithm from Unicode TR39

See http://www.unicode.org/reports/tr39/

Examples

import "github.com/mtibben/confusables"

confusables.Skeleton("𝔭𝒶ỿ𝕡𝕒ℓ")  # "paypal"
confusables.Confusable("𝔭𝒶ỿ𝕡𝕒ℓ", "paypal")  # true

Note on the use of Skeleton, from TR39:

A skeleton is intended only for internal use for testing confusability of strings; the resulting text is not suitable for display to users, because it will appear to be a hodgepodge of different scripts. In particular, the result of mapping an identifier will not necessary be an identifier. Thus the confusability mappings can be used to test whether two identifiers are confusable (if their skeletons are the same), but should definitely not be used as a “normalization” of identifiers.