Hi Team,
I have requirement as need to add extra feature under List or Paragraph Formats in RTE.
Enter the text and i can select the my newly added feature then out put has to display as below "Icon with Text" refer screen shot.
Can you please review and guide us how to achieve.
Regards
Mangala
Solved! Go to Solution.
Views
Replies
Total Likes
Hello @madhu61 ,
You can do it by adding a custom special character. This will look like below
Use:
<misctools
jcr:primaryType="nt:unstructured"
features="*">
<specialCharsConfig jcr:primaryType="nt:unstructured">
<chars jcr:primaryType="nt:unstructured">
<copyright
jcr:primaryType="nt:unstructured"
entity="&#169;"/>
<trademark
jcr:primaryType="nt:unstructured"
entity="&#8482;"/>
<registered
jcr:primaryType="nt:unstructured"
entity="&#174;"/>
<emDash
jcr:primaryType="nt:unstructured"
entity="&#8212;"/>
<pound
jcr:primaryType="nt:unstructured"
entity="&#163;"/>
<nbsp
jcr:primaryType="nt:unstructured"
entity="&#160;"/>
</chars>
</specialCharsConfig>
</misctools>
And use it by
misctools#specialchars
Adding Custom Special Character: https://experienceleague.adobe.com/docs/experience-manager-65/administering/operations/configure-ric...
Hello @madhu61 ,
You can do it by adding a custom special character. This will look like below
Use:
<misctools
jcr:primaryType="nt:unstructured"
features="*">
<specialCharsConfig jcr:primaryType="nt:unstructured">
<chars jcr:primaryType="nt:unstructured">
<copyright
jcr:primaryType="nt:unstructured"
entity="&#169;"/>
<trademark
jcr:primaryType="nt:unstructured"
entity="&#8482;"/>
<registered
jcr:primaryType="nt:unstructured"
entity="&#174;"/>
<emDash
jcr:primaryType="nt:unstructured"
entity="&#8212;"/>
<pound
jcr:primaryType="nt:unstructured"
entity="&#163;"/>
<nbsp
jcr:primaryType="nt:unstructured"
entity="&#160;"/>
</chars>
</specialCharsConfig>
</misctools>
And use it by
misctools#specialchars
Adding Custom Special Character: https://experienceleague.adobe.com/docs/experience-manager-65/administering/operations/configure-ric...
HI @madhu61
you can check this http://experience-aem.blogspot.com/2017/05/aem-62-touch-ui-extend-rte-list-plugin-for-adding-selecte...
HI Team,
Thanks for you responses. Let me implement the solution .
Views
Likes
Replies