summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-core-attrib.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-core-attrib.rnc')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-core-attrib.rnc35
1 files changed, 0 insertions, 35 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-core-attrib.rnc b/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-core-attrib.rnc
deleted file mode 100644
index e9d73f1601f..00000000000
--- a/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-core-attrib.rnc
+++ /dev/null
@@ -1,35 +0,0 @@
-namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
-
-
-##
-## SVG 1.1 Core Attribute Module
-## file: svg-core-attrib.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-core-attrib.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
-##
-
-##
-## Core Attribute
-##
-## id, xml:base, xml:lang, xml:space
-##
-## This module defines the core set of attributes that can be present on
-## any element.
-##
-[ xml:lang = "en" ]
-grammar {
- SVG.id.attrib = attribute id { xsd:ID }?
- SVG.base.attrib = attribute xml:base { URI.datatype }?
- SVG.lang.attrib = attribute xml:lang { LanguageCode.datatype }?
- SVG.space.attrib = attribute xml:space { "default" | "preserve" }?
- SVG.Core.extra.attrib = empty
- SVG.Core.attrib =
- SVG.id.attrib,
- SVG.base.attrib,
- SVG.lang.attrib,
- SVG.space.attrib,
- SVG.Core.extra.attrib
-}