HtmlXmpElement
The xmp HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlXmpElement : HtmlElement
{
public HtmlXmpElement(Document owner)
: base(owner, Tags.Xmp, NodeFlags.Special | NodeFlags.LiteralText)
{
}
}
}