HtmlRtElement
The rt element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlRtElement : HtmlElement
{
public HtmlRtElement(Document owner, string prefix = null)
: base(owner, Tags.Rt, prefix, NodeFlags.ImplicitelyClosed | NodeFlags.ImpliedEnd)
{
}
}
}