Question
How to add custom css class to <ul> or <li> of AEM RTE IN AEM 6.5
If we add some style for list, then markup is generating as below.
<ol>
<li> <span class = "note"> Sample Text </span></li>
<li> Sample Text </li>
</ol>
My requirement is to insert the class in <li class = "note">. If we add some style to whole list , then markup should generate as below
<ol class = "note">
<li> Sample Text </li>
<li> Sample Text </li>
</ol>
How can i achieve this in RTE?
Thanks in advance.