From da1c49e6f2d849221446cde331a3180f0246da71 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Mon, 13 Aug 2018 17:17:41 +0200 Subject: [PATCH] src/rss_converter_twitter.com.xsl: add a label to tweets containing GIFs The static scraped content only provides a preview of GIF files with the first frame only, just like in the case of videos. Set a label when a tweet contains a GIF so that the user can decide to open the tweet in a full fledged browser to properly see the GIF. --- src/rss_converter_twitter.com.xsl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/rss_converter_twitter.com.xsl b/src/rss_converter_twitter.com.xsl index 88f3b94..2cf1868 100644 --- a/src/rss_converter_twitter.com.xsl +++ b/src/rss_converter_twitter.com.xsl @@ -120,6 +120,7 @@ + <xsl:value-of select="concat($user-name, ': ')"/> @@ -155,6 +156,10 @@ <xsl:text> (Video)</xsl:text> <xsl:element name="br"/> </xsl:if> + <xsl:if test="$item-has-gif"> + <xsl:text> (GIF)</xsl:text> + <xsl:element name="br"/> + </xsl:if> <xsl:element name="span"> <xsl:attribute name="style">white-space: pre-wrap;</xsl:attribute> <xsl:apply-templates select="$item-content/node()"/> -- 2.1.4