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