File: eg.dtd

package info (click to toggle)
speech-tools 1%3A2.5.0-14
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,040 kB
  • sloc: cpp: 67,350; ansic: 12,174; sh: 4,055; java: 3,748; makefile: 1,106; lisp: 711; perl: 396; awk: 85; xml: 9
file content (15 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

<!--	Example DTD for a trivial phrase structure markup.
	-->

<!ENTITY % ph-els "punct|phrase" >

<!ELEMENT punct EMPTY>
<!ATTLIST punct	    
		mark  CDATA #REQUIRED >

<!ELEMENT phrase    (#PCDATA | %ph-els;)* >

<!ELEMENT sentence  (%ph-els;)+ >

<!ELEMENT text      (sentence)+ >