When I save off text from the RadEditor, it saves it into html formatting. Is there a way within RadEditor that I can define how to save specific elements?
I would like to replace the <p>, <br>,<strong>, and <em> tags (possibly others as well) with something else. I realize this is possible through something like a string.replace, but I'm wondering if there is also a way within RadEditor itself.
For instance, this is the output that RadEditor currently provides:
and this is what I would like it to be:
I would like to replace the <p>, <br>,<strong>, and <em> tags (possibly others as well) with something else. I realize this is possible through something like a string.replace, but I'm wondering if there is also a way within RadEditor itself.
For instance, this is the output that RadEditor currently provides:
<ol> <li>numbered list one</li> <li>numbered list two</li></ol><ul> <li>bullet list one</li> <li>bullet list two</li></ul><p><strong>bold word</strong><br /><br /><em>italics word</em></p>and this is what I would like it to be:
<ol> <li>numbered list one</li> <li>numbered list two</li></ol><ul> <li>bullet list one</li> <li>bullet list two</li></ul>& #013;& #013;<span style="font-weight:bold">bold word</span>& #013;& #013;<span style="font-style:italic">italics word</span>