/// <summary>
 /// Append the provided text to our body. No formatting will be applied
 /// </summary>
 /// <param name="RHS"></param>
 /// <returns></returns>
 public HtmlBuilder AppendFormatted(string RHS, TextOptions InOptions)
 {
     if (InOptions == null)
     {
         SB.Append(RHS);
     }
     else
     {
         SB.Append(InOptions.ApplyToString(RHS));
     }
     return(this);
 }