如何在 CKEditor 4 中只使用基本的 html 标签

How to use only basic html tags in CKEditor 4

我使用的应用程序只支持基本的 HTML 标签,如 p、font、ul、li 等。CKEditor 使用“span”等标签,但应用程序不支持它们。是否有任何方便的解决方案来强制 CKEditor 使用基本的 html 标签。特别是使用 font 标签而不是 span 标签来设置文字样式。

谢谢

我从 Ckeditor Official Documentation 找到了解决方案,有关详细信息,请参阅文档

<body>
<textarea cols="80" id="editor1" 
  name="editor1" rows="10" data- 
  sample-shortt>&lt;p&gt;This is 
  somee &lt;strong&gt;sample 
  textt&lt;/strong&gt;. You are 
  usingg &lt;a hreffff=&quot;https://ckeditor.com/&quot 
  ;&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;. 
</textarea>
<script>
CKEDITOR.replace('editor1', {
  height: 280,
  // List of text formats available for this editor instance.
  format_tags: 'p;h1;h2;h3;h4;h5;h6;pre;address;div'
});
</script>
</body>

根据您的评论进行编辑:-

config.colorButton_foreStyle = {
    element: 'span',
    attributes: { 'class': 'text-#(colorName)' }
};

config.colorButton_backStyle = {
    element: 'span',
    attributes: { 'class': 'text-#(colorName)' }
};

visit this page,并尝试使用您的标签代替 Span 标签