7 lines
191 B
Go
7 lines
191 B
Go
// Package unidecode provide ASCII transliterations of Unicode text
|
|
//
|
|
// s := "北京kožušček"
|
|
// fmt.Println(unidecode.Unidecode(s))
|
|
// // Output: Bei Jing kozuscek
|
|
package unidecode
|