更改标签<strong>以粗体显示,<em>以斜体显示在ckeditor </em> </strong>

时间:2014-09-16 11:44:00

标签: ckeditor

我想更改标签

<strong> to <font style = "font-weight: bold;"> 

并更改标签

<em> to <font style = "font-style: italic;">

我按照http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.coreStyles_bold

中所述尝试过

但绝对没有变化。

最后我把它变成了:

CKEDITOR.config.coreStyles_bold = { element: 'strong', styles: { font-weight: 'bold' }, overrides: 'b' };

期望结果为:

<strong style="font-weight: bold;"></strong>

版本的CKEditor,4.1.1

1 个答案:

答案 0 :(得分:2)

如果你真的想要这个,这非常非常奇怪,如果你这样做,这可能会有所帮助:

config.allowedContent = true;
config.coreStyles_bold = {
    element: 'font',
    attributes: { 'style': 'font-weight: bold;' },
    overrides: 'strong'
};

在config.js文件中设置这些 - 而不是内联。顺便说一句,您使用的是错误的文档,请参阅:http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-coreStyles_bold