public static FormattedStringBuilder Bold(this FormattedStringBuilder source)
        {
            source.Append("<b>");
            source.PushToEnd("</b>");

            return(source.Italic());
        }