MathAnnotationXmlElement
The annotation-xml math element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Mathml
{
internal sealed class MathAnnotationXmlElement : MathElement
{
public MathAnnotationXmlElement(Document owner)
: base(owner, Tags.AnnotationXml, NodeFlags.Special | NodeFlags.Scoped)
{
}
}
}