I have some XML that looks like this
<book>
<bio>
hello world, the € is doing awfully well today
</bio>
</book>
Currently, when I import this to indesign, the €
is still showing as that, instead of displaying as €
I've tried adding it to the doctype as:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE book [
<!ENTITY euro '€'>
]>
<book>
<bio>
but this still renders out as €
instead of €. How can I get this to display as I wish?