xml parse removing apostrophes
I'm using this to parse an html file:
<cfscript>
myxmldoc1 = XmlParse("D:\inetpub\website\editorial\#whichsection#\#Uploaded_Folder_Name#\#htmlFileName#");
selectedElements = XmlSearch(GetTheTitle, "/html/body/h1");
s = "";
for (i = 1; i LTE ArrayLen(selectedElements); i = i + 1)
s &= selectedElements.XmlText;
</cfscript>
Works great, but the html file is using "’" to display apostrophes and for some reason those are getting stripped out when it gets parsed. Is that typical, and can it be fixed?
