Hi,
I have an sgml-document containing entities for cyrillic characters. In the entity-table, these are replaced by their corresponding unicode-values, in the form of:
<!ENTITY Acyr CDATA "А" -- capital a -->
or:
<!ENTITY Acyrac CDATA "А##x0301;" -- capital a acute -->
However, if I parse the sgml-file first with the nsgmls-parser and then send the fp handle to loadsgmls
set fp [open "|c:/WINNT/system32/nsgmls -butf-8 $sgmlfile" r]
loadsgmls $fp
all the entities are lost completely.
All the paths for the DTDs and other files in the sgml-document are correct, I've checked that several times now.
Does anyone know how to handle this?
I have an sgml-document containing entities for cyrillic characters. In the entity-table, these are replaced by their corresponding unicode-values, in the form of:
<!ENTITY Acyr CDATA "А" -- capital a -->
or:
<!ENTITY Acyrac CDATA "А##x0301;" -- capital a acute -->
However, if I parse the sgml-file first with the nsgmls-parser and then send the fp handle to loadsgmls
set fp [open "|c:/WINNT/system32/nsgmls -butf-8 $sgmlfile" r]
loadsgmls $fp
all the entities are lost completely.
All the paths for the DTDs and other files in the sgml-document are correct, I've checked that several times now.
Does anyone know how to handle this?