1 2 3 4 5 6 7 8 9 10 11 12 13
discard """ cmd: "nim $target --hints:on -d:embedUnidecodeTable $options $file" """ import unidecode import std/unidecode # #14112 import std/assertions loadUnidecodeTable("lib/pure/unidecode/unidecode.dat") doAssert unidecode("北京") == "Bei Jing " doAssert unidecode("Äußerst") == "Ausserst"