1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<?xml encoding='US-ASCII'?>
<!-- MARKUP ENTITY -->
<!ENTITY % markup "em|ref|code|br">
<!-- import the external source-specific dtd -->
<!ENTITY % externalEntity SYSTEM "../../sources/entities.ent">
%externalEntity;
<!-- import the external charecters.ent dtd -->
<!ENTITY % charEntity SYSTEM "characters.ent">
%charEntity;
<!-- import the external links.ent dtd -->
<!ENTITY % linksEntity SYSTEM "links.ent">
%linksEntity;
<!ELEMENT em (#PCDATA|%links;)*>
<!ELEMENT ref (#PCDATA|%links;)*>
<!ELEMENT code (#PCDATA|%links;|ref)*>
<!ELEMENT br EMPTY>
<!-- CVS $Revision: 1.2 $ $Date: 1999/12/01 23:03:37 $ -->
|