summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rnc')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rnc47
1 files changed, 47 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rnc b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rnc
new file mode 100644
index 00000000000..50b42d15627
--- /dev/null
+++ b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-cursor.rnc
@@ -0,0 +1,47 @@
+default namespace = "http://www.w3.org/2000/svg"
+namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
+
+
+##
+## SVG 1.1 Cursor Module
+## file: svg-cursor.rng
+##
+## This is SVG, a language for describing two-dimensional graphics in XML.
+## Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved.
+##
+## $Id: svg-cursor.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
+##
+
+##
+## Cursor
+##
+## cursor
+##
+## This module declares markup to provide support for cursor.
+##
+
+##
+## Datatypes
+##
+[ xml:lang = "en" ]
+grammar {
+ CursorValue.datatype = xsd:string
+ a:documentation [ "\x{a}" ~ " SVG.Cursor.attrib\x{a}" ~ " " ]
+ SVG.Cursor.extra.attrib = empty
+ SVG.Cursor.attrib &=
+ attribute cursor { CursorValue.datatype }?,
+ SVG.Cursor.extra.attrib
+ a:documentation [ "\x{a}" ~ " SVG.Cursor.class\x{a}" ~ " " ]
+ SVG.Cursor.extra.class = notAllowed
+ SVG.Cursor.class |= cursor | SVG.Cursor.extra.class
+ a:documentation [ "\x{a}" ~ " cursor: Cursor Element\x{a}" ~ " " ]
+ SVG.cursor.content = SVG.Description.class*
+ cursor = element cursor { attlist.cursor, SVG.cursor.content }
+ attlist.cursor &=
+ SVG.Core.attrib,
+ SVG.Conditional.attrib,
+ SVG.XLinkRequired.attrib,
+ SVG.External.attrib,
+ attribute x { Coordinate.datatype }?,
+ attribute y { Coordinate.datatype }?
+}