[I'm a newbie at Quark-to-XML, so all info (and references, etc.) are appreciated!]
I've managed to create a fairly serviceable DTD, but one of the things I've not been able to do is to get the "special" characters in my documents to get translated to entities.
Of course, the five default ones (apostrophes, ampersands, . . . ) get converted. But my documents have many more. I've tried adding declarations like the following into my DTD:
<!ENTITY Agrave "À ;" >*
BUT, this doesn't work. (When I look at an XML I save-as-standalone using this DTD, the embedded DTD portion has further "translated" the ENTITY declarations. E.g.: <!ENTITY Agrave "& ;Agrave ;"> )
How can I get this to work?
Many thanks,
Dan
*note: I couldn't figure out how to force this posting to NOT re-translate entities, so I've inserted a space before closing semicolon in each entity.