From c46ce78d72a01ec96d627ee79c8d26288673aaac Mon Sep 17 00:00:00 2001 From: Antonio Ospite <ao2@ao2.it> Date: Fri, 20 May 2016 13:33:01 +0200 Subject: [PATCH 1/1] rss_converter_twitter.com.xsl: present images in a more convenient way Make images clickable and pointing to the original full-size picture. --- rss_converter_twitter.com.xsl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/rss_converter_twitter.com.xsl b/rss_converter_twitter.com.xsl index ce2b07f..5c48e19 100644 --- a/rss_converter_twitter.com.xsl +++ b/rss_converter_twitter.com.xsl @@ -78,6 +78,20 @@ <xsl:text> </xsl:text> </xsl:template> + <!-- Present images in a more convenient way --> + <xsl:template match="div[@data-image-url]"> + <a> + <xsl:attribute name="href"> + <xsl:value-of select="concat(@data-image-url, ':orig')"/> + </xsl:attribute> + <img> + <xsl:attribute name="src"> + <xsl:value-of select="@data-image-url"/> + </xsl:attribute> + </img> + </a> + </xsl:template> + <xsl:template match="a[@data-expanded-url]" mode="enclosure"> <xsl:copy-of select="php:function('Tweeper::generateEnclosure', string(./@data-expanded-url))"/> </xsl:template> -- 2.1.4