HtmlStrikeElement
The strike HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlStrikeElement : HtmlElement
{
public HtmlStrikeElement(Document owner)
: base(owner, Tags.Strike, NodeFlags.HtmlFormatting)
{
}
}
}