AngleSharp by AngleSharp

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

.NET API 1,214,976 bytes

 HtmlWbrElement

sealed class HtmlWbrElement : HtmlElement
Represents the HTML wbr (word-break-opportunity) element. This element is used to indicate that the position is a good point for inserting a possible line-break.
using AngleSharp.Html; namespace AngleSharp.Dom.Html { internal sealed class HtmlWbrElement : HtmlElement { public HtmlWbrElement(Document owner, string prefix = null) : base(owner, TagNames.Wbr, prefix, NodeFlags.SelfClosing | NodeFlags.Special) { } } }