xsl-list
[Top] [All Lists]

Re: [xsl] processing rss with xslt

2008-11-17 12:47:07
Andrew Welch schrieb:
I've spent the day trying to process variours RSS feeds using XSLT and
pretty much decided it's not worth it...  Some feeds are ok, some
contain escaped markup and other contain a mix of escaped and
non-escaped markup, cdata sections etc

Those containing a seemingly unpredictable mix of escaped and
non-escaped markup are probably not worth the effort to fine-tune
the XSLT accordingly.

When the order is predictable, I've simply used d-o-e, although it is
certainly evil.

  http://www.tagesschau.de/xml/rss2

<xsl:template match="rss/channel/item[ content:encoded ]">
  ...
  <xsl:value-of select="content:encoded" disable-output-escaping="yes"/>

That's all the thought I've invested.

Michael Ludwig

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>