AngleSharp by Florian Rappl

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

.NET API 371,712 bytes

 HTMLHeadingElement

namespace AngleSharp.DOM.Html { public class HTMLHeadingElement : HTMLElement { public const string ChapterTag = "h1"; public const string SectionTag = "h2"; public const string SubSectionTag = "h3"; public const string SubSubSectionTag = "h4"; public const string SubSubSubSectionTag = "h5"; public const string SubSubSubSubSectionTag = "h6"; protected internal override bool IsSpecial => true; public HTMLHeadingElement() { base.NodeName = "h1"; } } }