HtmlCodeElement
The code HTML element.
using AngleSharp.Dom;
using System.Runtime.CompilerServices;
namespace AngleSharp.Html.Dom
{
internal sealed class HtmlCodeElement : HtmlElement
{
[System.Runtime.CompilerServices.NullableContext(1)]
public HtmlCodeElement(Document owner, [System.Runtime.CompilerServices.Nullable(2)] string prefix = null)
: base(owner, TagNames.Code, prefix, NodeFlags.HtmlFormatting)
{
}
}
}