I am using jquery richtext editor, Is there a way to remove all the inline style that richtext editor add, as some users are adding there own style and its breaking the layout.

is there a way using jquery or C#

please help

Regards

link|improve this question

79% accept rate
Including HTML TAG or only styles? – danyolgiax Jul 9 '11 at 8:37
only styles need to be removed – Moksha Jul 9 '11 at 10:07
feedback

2 Answers

up vote 1 down vote accepted

I found this code:

private string CleanHtml(string html)
{ 
    // start by completely removing all unwanted tags 
    html = Regex.Replace(html, @"<[/]?(font|span|xml|del|ins|[ovwxp]:\w+)[^>]*?>", "", RegexOptions.IgnoreCase); 
    // then run another pass over the html (twice), removing unwanted attributes 
    html = Regex.Replace(html, @"<([^>]*)(?:class|lang|style|size|face|[ovwxp]:\w+)=(?:'[^']*'|""[^""]*""|[^>]+)([^>]*)>","<$1$2>", RegexOptions.IgnoreCase); 
    html = Regex.Replace(html, @"<([^>]*)(?:class|lang|style|size|face|[ovwxp]:\w+)=(?:'[^']*'|""[^""]*""|[^>]+)([^>]*)>","<$1$2>", RegexOptions.IgnoreCase); 
    return html;
}

from here:

Remove Microsoft Class and Style attributes

HTH

link|improve this answer
feedback

I ran into this problem myself and couldn't find a solution that didn't remove ALL tags and formatting. There were over 100 entries riddled with all kinds of styling that needed to be uniform. I ended up "resetting" them using CSS:

span{font-family: Arial, Geneva, Helvetica, Verdana !important;font-size: 12px !important;color: #474844 !important;}

Note: This didn't help with certain special characters, but it did make all the styling uniform. Hope this helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.