L
Le TeXnicien de surface
Hello
Here is my dtd
<?xml version="1.0" encoding="ISO-8859-15"?>
<!ENTITY APOS "’">
<!ELEMENT poeme (entete*, strophe+, final*) >
<!ELEMENT strophe (entete*, v+) >
<!ELEMENT v (#PCDATA) > <!-- un vers -->
<!ELEMENT entete (titre, avec_titre*) >
<!ELEMENT titre (#PCDATA) >
<!ELEMENT avec_titre ((dedicace | remarque | sous-titre)*) >
Here is a test file
<?xml version="1.0" encoding="ISO-8859-15" ?>
<!DOCTYPE yh_perso SYSTEM "./yh_perso.dtd">
<poeme>
<strophe>
<v>L&APOS;essai</v>
</strophe>
</poeme>
The problem is that Firefox yells about an undefined entity when
reading &APOS;
I've tried to find the solution with "xml in a nutshell" but I'm at
wit ends.
Any help appreciated. Thanks.
Here is my dtd
<?xml version="1.0" encoding="ISO-8859-15"?>
<!ENTITY APOS "’">
<!ELEMENT poeme (entete*, strophe+, final*) >
<!ELEMENT strophe (entete*, v+) >
<!ELEMENT v (#PCDATA) > <!-- un vers -->
<!ELEMENT entete (titre, avec_titre*) >
<!ELEMENT titre (#PCDATA) >
<!ELEMENT avec_titre ((dedicace | remarque | sous-titre)*) >
Here is a test file
<?xml version="1.0" encoding="ISO-8859-15" ?>
<!DOCTYPE yh_perso SYSTEM "./yh_perso.dtd">
<poeme>
<strophe>
<v>L&APOS;essai</v>
</strophe>
</poeme>
The problem is that Firefox yells about an undefined entity when
reading &APOS;
I've tried to find the solution with "xml in a nutshell" but I'm at
wit ends.
Any help appreciated. Thanks.