如何在aspell字典中使用Unicode?

时间:2016-09-21 01:56:56

标签: linux aspell

我正在尝试使用aspell检查文字中的拼写。我有一个有例外的自定义词典。它们都是ASCII格式,但有一个单词是Unicode(foo.en.pws):

personal_ws-1.1 en 554
Foo
bar
Bárbara

然后,我跑:

cat x.txt | aspell -a --encoding=utf-8 -p ./foo.en.pws

我得到了:

Error: ./foo.en.pws: The word "Bárbara" is invalid. 
The character '�' (U+A1) may not appear in the middle of a word.

我该怎么办?

1 个答案:

答案 0 :(得分:3)

我找到了一种方法,感谢此文档page。字典的第一行最后必须有utf-8

personal_ws-1.1 en 554 utf-8
Foo
bar
Bárbara