-
Notifications
You must be signed in to change notification settings - Fork 338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
自定义核心词库 #227
Comments
可以看下这个 api 是否能够解决你的问题 |
这个似乎也是在现有的基础上加,不是替换? 我的需求不光是单字,我是打算把「孩子」这种词都注成 |
是覆盖,比如说 [孩子],你添加了 |
这个目前你只能把所有的词库中的轻声用 |
目前使用 describe("add custom pinyin", () => {
it("should not interfere with predefined words", () => {
customPinyin({ 银: "yín", 行: "xíng háng héng" });
expect(pinyin("银行")).toEqual("yín háng");
});
}); 我的本意是把整个通规字典导入一遍,以保证程序注音的结果中没匹配到词的单字给注的音一定是字典中的音,但是导致本来成词的也跟着这个表走了 如果感觉这里的行为不太好自定义,那我也可以等 #228 做好之后再搞 |
那我理解你只需要对于内置字典中所缺少的字导入一遍。你可以在通规字典导入时,对每个字先使用 |
已在 |
功能描述
现在可以通过
addDict
来增加新的词到读音的映射,但是无法覆盖内置的所有词背景是我在做一个带调拼音的输入法,希望让词中汉字的读音与单字一致,只出现《通用规范汉字字典》里出现的音(也即不考虑非助词的轻声),如果不改动源码,目前似乎实现不了
提炼几个功能点
The text was updated successfully, but these errors were encountered: