You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
315 B
13 lines
315 B
4 months ago
|
<!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) -->
|