This question is locked. New answers and comments are not allowed.
Hi,
Currently, when using the ASP.NET MVC Editor to enter text with Bold, Italic and Underlined styles, the generated html looks like this:
What I need if for the text to look like this:
How can I change the Editor so that when the user formats the text using Bold, Italic and Underline, it uses the <b></b>, <i></i> and <u></u> tag pairs respectively?
Regards,
Sijmen.
Currently, when using the ASP.NET MVC Editor to enter text with Bold, Italic and Underlined styles, the generated html looks like this:
<p>This is <strong>Bold</strong>, <em>Italic</em> and
<span style="text-decoration:underline;">Underlined</span> text.</p><p>This is <b>Bold</b>, <i>Italic</i> and <u>Underlined</u> text.</p>Regards,
Sijmen.