File: children.dtd

package info (click to toggle)
php-xml-dtd 0.5.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 268 kB
  • sloc: xml: 684; php: 416; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!ELEMENT foo (test1|test2|test3|test4|test5|test6|test7|test8|test9)+>

<!ELEMENT a EMPTY>
<!ELEMENT bbb EMPTY>
<!ELEMENT c EMPTY>
<!ELEMENT dddd EMPTY>

<!ELEMENT test1 (a)>
<!ELEMENT test2 (a|bbb|c|dddd)>
<!ELEMENT test3 (a|bbb)*>
<!ELEMENT test4 (a,bbb,c,dddd)>
<!ELEMENT test5 (a,bbb,c,dddd)+>
<!ELEMENT test6 ((a|bbb),(c|dddd))>
<!ELEMENT test7 (a,(c|dddd))>
<!ELEMENT test8 (a?,dddd+,c*)>
<!ELEMENT test9 (a,(c|bbb)*)>