File: jtest.sgm

package info (click to toggle)
docbook-dsssl-doc 1.79-7
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 3,724 kB
  • sloc: makefile: 2
file content (29 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (6)
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
<!DOCTYPE MEMO [
<!ELEMENT MEMO    - - (HEAD, BODY, END)>
<!ELEMENT HEAD    - - (DATE, TO, SUBJECT)>
<!ELEMENT DATE    - - (#PCDATA)>
<!ELEMENT TO      - - (#PCDATA)>
<!ELEMENT SUBJECT - - (#PCDATA)>
<!ELEMENT BODY    - - (PARA+)>
<!ELEMENT PARA    - - (#PCDATA)>
<!ELEMENT END     - - (CLOSING, SENDER)>
<!ELEMENT CLOSING - - (#PCDATA)>
<!ELEMENT SENDER  - - (#PCDATA)>
]>
<memo>
<head>
<date>Feb 29, 1997</date>
<to>John Doe</to>
<subject>Test Document</subject>
</head>
<body>
<para>This is the first paragraph.</para>
<para>This is the second.</para>
<para>This is the last.</para>
</body>
<end>
<closing>Sincerely,</closing>
<sender>Jane Doe</sender>
</end>
</memo>