summary refs log tree commit diff stats
path: root/tests/stdlib/tunidecode.nim
blob: 576bfa2cb1236b7a0e42f174031fc4af07fa2979 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
discard """
  cmd: "nim $target --hints:on -d:embedUnidecodeTable $options $file"
  output: "Ausserst"
"""

import unidecode

import std/unidecode # #14112

loadUnidecodeTable("lib/pure/unidecode/unidecode.dat")

#assert unidecode("\x53\x17\x4E\xB0") == "Bei Jing"
echo unidecode("Äußerst")