TYPO3 9.5.4 CKEditor RTE删除样式属性

时间:2019-04-18 07:52:57

标签: ckeditor typo3 typoscript rte typo3-9.x

我从7-> 8-> 9更新了TYPO3网站。现在的问题是RTE CKEditor不断删除样式属性,甚至删除样式。

原来的元素,内容:

<div class="mobilr">
<table height="655" width="972" style="vertical-align: middle; background-color: rgb(255, 255, 255); border-style: solid; border-color: rgb(187, 187, 187);" class="centertable">
<tbody>
<tr style="vertical-align: middle;">
<td>
<p>&nbsp;</p>
....

在编辑器中的加载方式为:

<table class="centertable" style="height:655px; width:972px">   
<tbody>     
    <tr>    
        <td>        
    <p>&nbsp;</p>
...

因此,保存时会丢失样式信息。 我尝试了以下TypoScript:

RTE.default.proc.allowedClasses = centertable, mobilr
RTE.default.proc.allowTags = table, tbody, tr, th, td, h1, h2, h3, h4, h5, h6, div, p, br, span, ul, ol, li, strong, em, b, i, u, sub, sup, a, img, hr, abbr, acronym, cente
RTE.default.proc.keepPDIVattribs := addToList(style)
RTE.default.proc.entryHTMLparser_db.tags.p.allowedAttribs = class, align, style
RTE.default.proc.entryHTMLparser_db.tags.td.allowedAttribs = class, align, style
RTE.default.proc.entryHTMLparser_db.tags.tr.allowedAttribs = class, align, style
RTE.default.proc.entryHTMLparser_db.tags.table.allowedAttribs = class, align, style
RTE.default.proc.entryHTMLparser_db.tags.div.allowedAttribs = class, align, style
RTE.default.proc.entryHTMLparser_db.tags.h1.allowedAttribs = class, align, style
RTE.default.proc.entryHTMLparser_db.tags.h2.allowedAttribs = class, align, style

这可惜没有任何效果。我将代码放置在设置中和页面上。 有没有一种方法可以完全关闭entryHTMLparser或不使用TS来解决此问题的另一种思路?

预先感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

这可能是.yaml文件中的配置;我在

EXT:rte_ckeditor / Configuration / RTE / Processing.yaml:

processing:
    allowAttributes: [class, id, title, dir, lang, xml:lang, itemscope, itemtype, itemprop]

您可以提供自己的配置,例如this guide;我会尝试

processing:
    allowAttributes: [class, id, title, dir, lang, xml:lang, itemscope, itemtype, itemprop, style]