cq5 richtext在每一行添加<p>标记

时间:2015-12-09 23:15:58

标签: extjs cq5 aem richtext

在CQ5中:xtype“richtext”允许作者在富文本编辑器中输入数据。

每当我点击一个输入以在新行中输入文本时,就会为每行文本生成以下代码。

<p><b>Australia/New Zealand</b></p>
<p><b>+61 00 1234 34567</b></p>
<p><b>Japan</b></p>
<p><b>+81 00 1234 34567</b></p>
<p>Additional offices in this region</p>

我确实看到了上图中的输出。 我真正想要的是

Actual Output

Expecting Output

我尝试将“removeSingleParagraphContainer”设置为Boolean true。但它没有表现出任何影响。

似乎我错过了一些东西。当我按下回车键/返回时,光标应该转到紧接的下一行,而不是两行。

我很感激你的帮助。

我尝试的事情:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

在AEM的richtext编辑器中,如果你想断线,你应该使用SHIFT + ENTER。它会生成<br/>标记。

ENTER会在新段落中破坏您的文字。它会生成<p>代码。