flux:field.text + CKEditor 在后端每次保存操作添加新的空 <p></p>

flux:field.text + CKEditor add new empty <p></p> in backend every save action

当我将我的自定义 FLUX CE 与 flux.filed.text 一起使用时,每次当我保存我的文本时,我都会在 aech paragraph.Add 段落之间的空行之后得到新的空行 <p></p> <p><br></p>

默认 flud_styled_content 像 TextMedia、Text、TextPic - 都很好。就是落后这个

<flux:field.text name="text" label="Text" 
                 enableRichText="TRUE"/>

我试过了:

  1. 关闭自动段落 Turn off enclosing <p> tags in CKEditor 3.0
  2. 重新加载配置和创建自定义也尝试了不同的 默认、最小、自定义等。 https://github.com/FluidTYPO3/flux/issues/1388#issuecomment-311618318

我发现它们在前端是多么干净 - 我只是在输出中添加了

 <f:format.html parseFuncTSPath="">{text}</f:format.html>

但我不喜欢每次保存元素时我都会得到越来越多的空行

TYPO3 8.7.1 + FLUX 8.2.1

直接在'flux'中添加条件,没有找到其他解决方案 关于 flux/Classes/Form/Field/Text.php

中的第 60 行
if (true === $this->getEnableRichText() && true === empty($defaultExtras)) {
    $typoScript = $this->getConfigurationService()->getAllTypoScript();
    //$configuration['defaultExtras'] = $typoScript['plugin']['tx_flux']['settings']['flexform']['rteDefaults'];
    $configuration['enableRichtext'] = true;
} else {
    $configuration['defaultExtras'] = $defaultExtras;
}

希望 TYPO3 尽快在内核中解决这个问题,或者 'flux' 将添加官方 pach