mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 13:38:28 -06:00
13 lines
315 B
XML
13 lines
315 B
XML
<!DOCTYPE doc [
|
|
<!ATTLIST doc attrExtEnt CDATA #IMPLIED>
|
|
<!ENTITY ent1 "Hello">
|
|
<!ENTITY ent2 SYSTEM "world.txt">
|
|
<!ENTITY entExt SYSTEM "earth.gif" NDATA gif>
|
|
<!NOTATION gif SYSTEM "viewgif.exe">
|
|
]>
|
|
<doc attrExtEnt="entExt">
|
|
&ent1;, &ent2;!
|
|
</doc>
|
|
|
|
<!-- Let world.txt contain "world" (excluding the quotes) -->
|