go-unidecode icon indicating copy to clipboard operation
go-unidecode copied to clipboard

ASCII transliterations of Unicode text.

Results 5 go-unidecode issues
Sort by recently updated
recently updated
newest added

Thank you very much for the wonderful library, I am glad it is here! I did come across one transliteration issue - I believe してください should be shitekudasai instead of...

question

via https://github.com/mozillazg/go-pinyin

enhancement

```golang assert.Equal(t, "Ni Hao", unidecode.Unidecode("你好")) ``` return: ```sh Error: Not equal: expected: "Ni Hao" actual : "Ni Hao " ``` it would be better if this returns just `"Ni Hao"`.

```go unidecode.Unidecode("بسم الله") ``` The above characters were not correctly translated to `bsm allh`

Addressing #8 Benchmark suffers by about 12% iterations on my machine.