summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rng/xhtml-bdo.rng
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rng/xhtml-bdo.rng')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rng/xhtml-bdo.rng37
1 files changed, 0 insertions, 37 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rng/xhtml-bdo.rng b/Master/texmf-dist/source/latex/stex/schema/rng/xhtml-bdo.rng
deleted file mode 100644
index 0ae52c536d7..00000000000
--- a/Master/texmf-dist/source/latex/stex/schema/rng/xhtml-bdo.rng
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<grammar xmlns="http://relaxng.org/ns/structure/1.0">
- <!-- Bi-directional Module -->
- <define name="bdo">
- <element name="bdo">
- <interleave>
- <ref name="bdo.attlist"/>
- <ref name="Inline.model"/>
- </interleave>
- </element>
- </define>
- <define name="bdo.attlist">
- <interleave>
- <ref name="Core.attrib"/>
- <ref name="lang.attrib"/>
- <ref name="dir.attrib"/>
- </interleave>
- </define>
- <define name="dir.attrib">
- <attribute name="dir">
- <choice>
- <value>ltr</value>
- <value>rtl</value>
- </choice>
- </attribute>
- </define>
- <define name="I18n.attrib" combine="interleave">
- <optional>
- <ref name="dir.attrib"/>
- </optional>
- </define>
- <define name="Inline.class" combine="interleave">
- <zeroOrMore>
- <ref name="bdo"/>
- </zeroOrMore>
- </define>
-</grammar>