fckeditor/tinymce 编辑器中的自定义词典用法
我必须将自定义词典添加到 fckeditor/tinymce 编辑器中,以便在进行拼写检查时我的品牌名称、材料名称不应该在编辑器中拼写错误。任何人都可以建议我将自定义词典添加到我的编辑器中。
提前致谢
I have to add my custom Dictionary to fckeditor/ tinymce editor,so that my brand name,material name shouldn't be misspelled in editor when spellchecking happens.Can anyone suggest me to add custom dictionary to my editors.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一些 TinyMCE 拼写检查选项可以使用自定义词典。免费的解决方案是在您的服务器上使用 PSpell/ASpell 的 PSpell/ASpell 插件。
http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/拼写检查
JSpell 是一个非免费的解决方案,它允许您从编辑器更改字典。
http://www.jspell.com/ajax-spell-checker.html
There are a few TinyMCE spell check options that can use custom dictionaries. The free solution is the PSpell/ASpell plugin that uses PSpell/ASpell on your server.
http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker
A non-free solutions is JSpell, which allows you to alter the dictionary from the editor.
http://www.jspell.com/ajax-spell-checker.html
另一种选择是使用tinyMCE+LanguageTool (https://www.languagetool.org/)
LanguageTool它更像是一个拼写检查引擎,您甚至可以在其中定义自己的语法规则等。
它非常强大且免费。 :)
它还为tinyMCE 提供了一个开源拼写检查器插件。在您自己的服务器中托管服务字典时,还可以设置自定义字典和其他自定义内容。
实际的拼写检查插件:
https://github.com/automattic/atd-tinymce
如何集成
一般开发概述
主要 wiki
有关相关自定义词典文件的有趣信息
Another alternative, is to use tinyMCE+LanguageTool (https://www.languagetool.org/)
LanguageTool its more like a spell checking engine, where you can even define your own grammatical rules, etc.
Its really powerful and free. :)
Its offered also an open source spellchecker plugin for tinyMCE. The custom dictionary and other custom things can also be setup when hosting the service dictionary in your own server.
The actual spellchecking plugin:
https://github.com/automattic/atd-tinymce
How to integrate
General development overview
Main wiki
Interesting info about related custom dictionary files