我在Savvy CMS安装中向CKEditor 4添加特殊字符时遇到了问题。例如,实体代码代表的土耳其字符:ğ
,ı
和ş
:ğ
,ı
和ş
被剥离发布内容对象时的富文本。
HTML标记如下
<style>
td{width:50px;padding:5px;text-align:center;background-color:#e0e0e0;}
</style>
<p>The Turkish alphabet is a modified version of the Latin alphabet and consists of 29 letters.<br/>
Included are 6 additional letters...</p>
<table>
<tr>
<td>ç</td>
<td>ğ</td>
<td>ı</td>
<td>ö</td>
<td>ş</td>
<td>ü</td>
</tr>
</table>
<p>...while - q, w, x - are excluded.</p>
我找到了CKEditor的config.js文件,并附加了实体代码,如下所示
config.specialChars = ['!', '"'... 'ğ', 'ı'...];
我也试过
config.extraSpecialChars = ['ğ'];
但是,在发布对象时仍会剥离特殊字符。 如何配置CKEditor 4以接受其他特殊字符?
答案 0 :(得分:1)
尝试使用此代替
config.entities_additional = '#287,#305,#351';