File: doc.xml

package info (click to toggle)
nqxml 1.1.3p1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 412 kB
  • ctags: 331
  • sloc: ruby: 3,177; makefile: 89; xml: 41
file content (29 lines) | stat: -rw-r--r-- 930 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0"?>
<!-- comments allowed in preamble -->
<!DOCTYPE doc SYSTEM "ignored" [
  <!-- comments allowed in doctype -->

  <!ENTITY app "&lt;b&gt;Author Name&lt;/b&gt;">
  <!ENTITY inner "xyzzy">
  <!ENTITY outer "&inner;"> <!-- will be xyzzy -->
]>
<doc>
  <author>
    <name>Author's Name</name>
    <contact-info>
      <address type="business">
	<street>42 Ruby Street</street>
	<city>Ruby</city><state>NY</state><country>USA</country>
      </address>
      <address type="favorite bar">
	<street>43 Ruby Street</street>
	<city>Ruby</city><state>NY</state><country>USA</country>
      </address>
    </contact-info>
    <mental-state state="blithering idiot"/>
  </author>
  <p class="body">Here is a paragraph about &app;.</p>
  <p class="body">Here is another, with some <b>bold</b>text.</p>
  <p class="no-class at all">should see xyzzy: &outer;</p>
  <a><b><c><d><e><f><g/><h/></f></e></d></c></b></a>
</doc>