Rank: Newbie Groups: Member
Joined: 7/8/2010 Posts: 1
|
Hi,
Is it possible to change the format that is produced by the HTML editor?
For example I don't want it to produce following:
"<span style=\"font-weight: bold;\"> </span>"
and need it to always produce:
<strong> </strong>
The reason for this is that I need to send this HTML text to a seperate application that cannot read the span tag and only reads the <strong> tag.
Thanks, Paul
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
There is no way to do that in the current version. You may want to use a regular expression to search and find all <span style="font-weight:bold"></span> blocks and replace them with <strong> tags. Sorry about it!
Thanks!
|