I'm using XSLT to pull data from a Google Calendar RSS Feed. The title has HTML escape characters, and I am having trouble getting the normal text to be displayed.
Here is what is showing up:
Aug 27, 2015 Teacher Inservice
Aug 28, 2015 Teacher Inservice
Aug 31, 2015 FBCS Parent's Night
Sep 1, 2015 First day of school
Sep 7, 2015 Labor Day
Sep 10, 2015 High School Retreat
Convert HTML Escape Characters to text
Hi,
I'm using XSLT to pull data from a Google Calendar RSS Feed. The title has HTML escape characters, and I am having trouble getting the normal text to be displayed.
Here is what is showing up:
I've tried this, but no luck:
Any ideas?
Thanks!
--Kent
Haven't touched xslt for a long time but perhaps something like
<xsl:output method="text"/>
ordisable-output-escaping="yes"
can help you?Perfect! Thank you!
is working on a reply...