CKeditor

Drupal7 安装 CKEditor 和 IMCE 模块 及配置

习惯了使用所见即所得(Wysiwyg)编辑器, Drupal7 安装 CKEditor 编辑器的方法及配置:

wysiwyg + ckeditor 源代码连在一起,如何解决?

问题:

wysiwyg + ckeditor 当将编辑器切换至源代码时 如何设置代码不连在一起?

回答:

admin/settings/wysiwyg/profile/2/edit

在“Cleanup and output”下面, 勾选 “Apply source formatting”一项即可。

 

取消ckeditor 的自动拼写检查

Your rating: None Average: 3 (1 vote)

ckeditor的自动拼写检查对中文语系的我们,其实沒有多大用处,反而在画面开启前,还要等待它与

svn.spellchecker.net的连接!

所以可以把它取消掉!

在网络上查到的有2个!

scayt_autoStartup = false;  (这个我试过有效)
disableNativeSpellChecker=false;   (这个我用了..沒效..)

提供给大家参考

If you want to disable the auto spell check function with ckedior, you should add the

setting below in your ckeditor config!

scayt_autoStartup = false;(This worked)
disableNativeSpellChecker=false;(….not worked)

 

同步内容