File: example.dtd

package info (click to toggle)
libxml%2B%2B2.6 2.40.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 8,056 kB
  • sloc: sh: 11,363; cpp: 7,695; xml: 996; perl: 289; makefile: 221
file content (15 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
DTD for libxml++ example.
-->

<!ELEMENT example (examplechild)+ >

<!ELEMENT examplechild (child_of_child)+ >
<!ATTLIST examplechild
  id	CDATA	#REQUIRED
  title CDATA "No title"
>

<!ELEMENT child_of_child EMPTY >