From 1c17fb1edd46f24311fa2e4ad97be6ff46fd3156 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Sun, 7 Jul 2013 01:22:47 +0200 Subject: [PATCH] Embed the full HTML content of the tweet in the description field Use CDATA to embed the exact copy of an element; it is neat and we get click-able links in the feed reader for free. --- twitter_user_timeline2rss.xsl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/twitter_user_timeline2rss.xsl b/twitter_user_timeline2rss.xsl index b70cd07..6d72ceb 100644 --- a/twitter_user_timeline2rss.xsl +++ b/twitter_user_timeline2rss.xsl @@ -31,15 +31,12 @@ - - - : - - + - <xsl:call-template name="tweet"/> + <xsl:value-of select="concat($screen-name, ': ')"/> + <xsl:value-of select="$tweet-text"/> @@ -48,7 +45,10 @@ - + + <![CDATA[ + + ]]> -- 2.1.4