antp wrote:The HTML Export should replace the & < > characters actually... so that's a bug

There are maybe other forbidden characters.
I will correct that for a future version.
But for special characters such as é à è etc... you need to specify a charset in the XML header (like what Ant Movie Catalog does when saving to XML, but it does it wrongly since it does not allow you to modify it, and specifies European charset

)
How do you actually specify different character set? You mean in here?
<?xml version="1.0" encoding="ISO-8859-1" ?> What about Korean character? What do I and how do I put that information in?
Below is what I have for now which still wouldn't work. Let me know what else needs to be changed.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<movies>
$$ITEM_BEGIN
<movie>
<number>$$ITEM_NUMBER</number>
<date>$$ITEM_DATEADD</date>
<media>$$ITEM_MEDIA</media>
<title><![CDATA[$$ITEM_FORMATTEDTITLE2]]></title>
<year>$$ITEM_YEAR</year>
<length>$$ITEM_LENGTH</length>
<category>$$ITEM_CATEGORY</category>
<director>$$ITEM_DIRECTOR</director>
<description><![CDATA[$$ITEM_DESCRIPTION]]></description>
<picture>$$ITEM_PICTUREFILENAME</picture>
<producer>$$ITEM_PRODUCER</producer>
<picture>$$ITEM_PICTUREFILENAME</picture>
<actors><![CDATA[$$ITEM_ACTORS]]></actors>
<rating>$$ITEM_RATING</rating>
</movie>