HTMLQuoteElement
Rperesents the HTML quote element.
namespace AngleSharp.DOM.Html
{
[DOM("HTMLQuoteElement")]
public sealed class HTMLQuoteElement : HTMLElement
{
internal const string NormalTag = "quote";
internal const string BlockTag = "blockquote";
internal const string ShortTag = "q";
protected internal override bool IsSpecial => _name.Equals("blockquote");
internal HTMLQuoteElement()
{
_name = "quote";
}
}
}