AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.3.1" />

.NET API 481,792 bytes

 HTMLQuoteElement

public sealed class HTMLQuoteElement : HTMLElement
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"; } } }