현재 AEM 6.2 프로젝트에서 서식있는 텍스트 편집기 (RTE)를 사용하고 있습니다. blockquote 태그를 사용하도록 RTE를 구성하고 싶습니다. 어떻게 이것을 달성 할 수 있습니까?AEM에서 블록 인용문을 사용하도록 RTE 구성 요소를 업데이트하십시오.
<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
내 대답보기. 나는 두 문제를 다 다루었 다. 자세한 내용이 필요하면 알려주세요 –