HtmlNoNewlineElement
The nobr HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlNoNewlineElement : HtmlElement
{
public HtmlNoNewlineElement(Document owner, string prefix = null)
: base(owner, TagNames.NoBr, prefix, NodeFlags.HtmlFormatting)
{
}
}
}