我目前在我的AEM 6.2項目中使用富文本編輯器(RTE)。我想配置RTE使用blockquote標籤。如何實現這一目標?更新RTE組件以在AEM中使用塊引用
<blockquote>
組件的代碼:
<paraformat jcr:primaryType="nt:unstructured" features="*">
<formats jcr:primaryType="cq:WidgetCollection">
<p jcr:primaryType="nt:unstructured" description="Paragraph" tag="p"/>
<h1 jcr:primaryType="nt:unstructured" description="Heading 1" tag="h1"/>
<h2 jcr:primaryType="nt:unstructured" description="Heading 2" tag="h2"/>
<h3 jcr:primaryType="nt:unstructured" description="Heading 3" tag="h3"/>
<h4 jcr:primaryType="nt:unstructured" description="Heading 4" tag="h4"/>
<h5 jcr:primaryType="nt:unstructured" description="Heading 5" tag="h5"/>
<blockquote jcr:primaryType="nt:unstructured" description="Block Quote" tag="blockquote"/>
</formats>
</paraformat>
參考:
感謝。
* configure *是什麼意思?你是否希望RTE顯示'blockquote'作爲選項,還是希望它允許'blockquote'被渲染?這是兩個不同的問題,因此要求。 –
我的意思是讓RTE使用'blockquote'。 – phemanthkumar28
請參閱下面的答案。我已經涵蓋了這兩個問題。讓我知道如果你需要更多的細節 –