I use ckeditor to save my texts ... (asp.net mvc)
The text is saved in the database as follows:
<ul><li>List item</li><li>List item</li><li>List item</li></ul>
And when I launch my site, I want it to look like this:
- List item
- List item
- List item
But the text is the same as in the database:
<ul><li>List item</li><li>List item</li><li>List item</li></ul>
And the source code:
<ul>
<li>
List item</li>
<li>
List item</li>
<li>
List item</li>
</ul>
What am I missing?
source
share