-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpiaget.rng
68 lines (68 loc) · 1.9 KB
/
piaget.rng
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<grammar ns="http://www.tei-c.org/ns/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
xml:lang="fr"
xmlns="http://relaxng.org/ns/structure/1.0"
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
xmlns:h="http://www.w3.org/1999/xhtml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
<include href="teinte.rng">
<define name="label.type">
<optional>
<attribute name="type">
<choice>
<value>genus</value>
<value>head</value>
<value>question</value>
<value>species</value>
<value>variety</value>
</choice>
</attribute>
</optional>
</define>
<define name="TEI.atts">
<ref name="xml.lang"/>
<ref name="xml.id"/>
<attribute name="type">
<choice>
<value>book</value>
<value>article</value>
</choice>
</attribute>
</define>
<define name="p.atts">
<optional>
<attribute name="type">
<choice>
<value>observation</value>
<value>proof</value>
</choice>
</attribute>
</optional>
<optional>
<attribute name="rend">
<choice>
<value>i center</value>
<value>i hanging</value>
<value>i indent</value>
<value>i right</value>
<value>i</value>
<value>center</value>
<value>hanging</value>
<value>indent</value>
<value>right</value>
</choice>
</attribute>
</optional>
</define>
<define name="att.target">
<optional>
<attribute name="target">
<a:documentation>Provisoirement optionnel pour validation</a:documentation>
<data type="anyURI"/>
</attribute>
</optional>
</define>
</include>
</grammar>