HtmlCodeElement
The code HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlCodeElement : HtmlElement
{
public HtmlCodeElement(Document owner, string prefix = null)
: base(owner, TagNames.Code, prefix, NodeFlags.HtmlFormatting)
{
}
}
}