Hello.
I'm using SSRS (MS Reporting Services) and doen't work well with styled list elements.
If I for example have:
<ul>
<li> bla </li>
<li style="text-align: right;">bla-bla</li>
</ul>
It won't work in SSRS html rendering.
But it'll work if wrap list element text with <p> for instance:
<ul>
<li> bla </li>
<li><p style="text-align: center;">bla-bla-bla</p></li>
</ul>
So I'm asking whether there is a simple solution to setup CKEditor to do that automatically?
Thanks in advance!