summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-view.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-view.rnc')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-view.rnc42
1 files changed, 0 insertions, 42 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-view.rnc b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-view.rnc
deleted file mode 100644
index 41501c31f92..00000000000
--- a/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-view.rnc
+++ /dev/null
@@ -1,42 +0,0 @@
-default namespace = "http://www.w3.org/2000/svg"
-namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
-
-
-##
-## SVG 1.1 View Module
-## file: svg-view.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-view.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
-##
-
-##
-## View
-##
-## view
-##
-## This module declares markup to provide support for view.
-##
-
-##
-## SVG.View.class
-##
-[ xml:lang = "en" ]
-grammar {
- SVG.View.extra.class = notAllowed
- SVG.View.class |= view | SVG.View.extra.class
- a:documentation [ "\x{a}" ~ " view: View Element\x{a}" ~ " " ]
- SVG.view.content = SVG.Description.class*
- view = element view { attlist.view, SVG.view.content }
- attlist.view &=
- SVG.Core.attrib,
- SVG.External.attrib,
- attribute viewBox { ViewBoxSpec.datatype }?,
- [ a:defaultValue = "xMidYMid meet" ]
- attribute preserveAspectRatio { PreserveAspectRatioSpec.datatype }?,
- [ a:defaultValue = "magnify" ]
- attribute zoomAndPan { "disable" | "magnify" }?,
- attribute viewTarget { text }?
-}