summaryrefslogtreecommitdiffstats
path: root/templates/xml/xml.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'templates/xml/xml.xsd')
-rw-r--r--templates/xml/xml.xsd23
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/xml/xml.xsd b/templates/xml/xml.xsd
new file mode 100644
index 0000000..9f80fe1
--- /dev/null
+++ b/templates/xml/xml.xsd
@@ -0,0 +1,23 @@
+<?xml version='1.0'?>
+<xsd:schema targetNamespace="http://www.w3.org/XML/1998/namespace"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xml:lang="en">
+
+ <xsd:attribute name="lang" type="xsd:language">
+ </xsd:attribute>
+
+ <xsd:attribute name="space" default="preserve">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:NCName">
+ <xsd:enumeration value="default"/>
+ <xsd:enumeration value="preserve"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:attribute>
+
+ <xsd:attributeGroup name="specialAttrs">
+ <xsd:attribute ref="xml:lang"/>
+ <xsd:attribute ref="xml:space"/>
+ </xsd:attributeGroup>
+
+</xsd:schema>