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