Project

General

Profile

Bug #99738

Updated by Alex Kellner over 1 year ago

In TYPO3 12 we rebuild the CKEditor Plugin in LUX. That plugin simply adds 3 data-attributes to a link tag. 

 In TYPO3 11 we use this settings in CKEditor.yaml: 
 <pre> 
 editor: 
   config: 
     extraAllowedContent: 'a[data-*];' 
 </pre> 

 and in addition this Page TSConfig: 
 <pre> 
 RTE.default.proc.entryHTMLparser_db.tags { 
   a.allowedAttribs := addToList(data-lux-email4link-sendemail,data-lux-email4link-text,data-lux-email4link-title,data-lux-linklistener) 
 } 
 </pre> 

 Are there any breaking changes here? Any hints? 

 --- 

 Update: When toggling the HTML-view in CKEditor, the data-attributes are still existing - that's why I think the new problem is TYPO3 related.

Back