Preparing for move to GitHub

This commit is contained in:
Simon Brooke 2018-03-20 16:21:43 +00:00
parent 2fc53be9e7
commit 38bcacc376
41 changed files with 2165 additions and 220 deletions

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
ns="http://www.w3.org/2002/06/xhtml2/">
<start>
<ref name="permitted-xhtml" />
</start>
<define name="permitted-xhtml">
<zeroOrMore>
<choice>
<element name="content">
<externalRef href="xhtml-2/xhtml-block.rng" />
<externalRef href="xhtml-2/xhtml-inline.rng" />
</element>
</choice>
</zeroOrMore>
</define>
</grammar>