Dictionary<string, string[]> CreateElementWhiteList()
{
return new Dictionary<string, string[]>{
{ "strong", new string[] { "style", } },
{ "b", new string[] { "style" } },
{ "em", new string[] { "style" } },
{ "i", new string[] { "style" } },
{ "u", new string[] { "style" } },
{ "strike", new string[] { "style" } },
{ "sub", new string[] { } },
{ "sup", new string[] { } },
{ "p", new string[] { "style", "align", "dir" } },
{ "ol", new string[] { } },
{ "li", new string[] { } },
{ "ul", new string[] { } },
{ "font", new string[] { "style", "color", "face", "size" } },
{ "blockquote", new string[] { "style", "dir" } },
{ "hr", new string[] { "size", "width" } },
{ "img", new string[] { "src" } },
{ "div", new string[] { "style", "align" } },
{ "span", new string[] { "style" } },
{ "br", new string[] { "style" } },
{ "center", new string[] { "style" } },
{ "a", new string[] { "href" } }
};
}