/// <summary>
 /// Sets the content to the <see cref="string"/> value. The value is treated as HTML encoded as-provided, and
 /// no further encoding will be performed.
 /// </summary>
 /// <param name="builder">The <see cref="IHtmlContentBuilder"/>.</param>
 /// <param name="content">The HTML encoded <see cref="string"/> that replaces the content.</param>
 /// <returns>The <see cref="IHtmlContentBuilder"/>.</returns>
 public static IHtmlContentBuilder SetContentEncoded(this IHtmlContentBuilder builder, string encoded)
 {
     builder.Clear();
     builder.AppendEncoded(encoded);
     return(builder);
 }
 /// <summary>
 /// Appends an <see cref="Environment.NewLine"/> after appending the <see cref="string"/> value.
 /// The value is treated as HTML encoded as-provided, and no further encoding will be performed.
 /// </summary>
 /// <param name="builder">The <see cref="IHtmlContentBuilder"/>.</param>
 /// <param name="content">The HTML encoded <see cref="string"/> to append.</param>
 /// <returns>The <see cref="IHtmlContentBuilder"/>.</returns>
 public static IHtmlContentBuilder AppendLineEncoded(this IHtmlContentBuilder builder, string encoded)
 {
     builder.AppendEncoded(encoded);
     builder.Append(HtmlEncodedString.NewLine);
     return(builder);
 }