public static void SetHtmlFontWeight(this HtmlElement element, FontWeight fontWeight, HtmlValueConverter converter) { if (fontWeight == FontWeight.Normal) { element.ClearHtmlStyleProperty("font-weight"); } else { element.SetHtmlStyleProperty("font-weight", converter.ToFontWeightString(fontWeight)); } }