I have another question concerning Entities. My problem is, that I like
to generate a HTML-file out of a XML-document with German "Umlaute".
Normally, an "Ÿ" (ue) in HTML is written as ü. I tried the following
Entitiy-declaration in my DTD,
<!ENTITY Ÿ '&uuml;'>
The result was just "&uuml;". Then I tried
<!ENTITY Ÿ 'ü'> and
<!ENTITY Ÿ '&uuml;'>
Both resulted in a Jade-error, arguing, that no entity "uuml" is defined.
How do I define an entitiy, that the correct HTML code is used?
Thanks,
Thorsten.