From 23bd2947e8afbb21dab696d9a655c53b39c8ff55 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Sat, 25 Jul 2015 12:48:30 +0200 Subject: [PATCH] rss_converter_instagram.com.xsl: ellipsize titles --- rss_converter_instagram.com.xsl | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/rss_converter_instagram.com.xsl b/rss_converter_instagram.com.xsl index 9ef06ef..0e1de8d 100644 --- a/rss_converter_instagram.com.xsl +++ b/rss_converter_instagram.com.xsl @@ -45,7 +45,18 @@ - <xsl:value-of select="$item-content-caption"/> + <xsl:variable name="title-length" select="140"/> + <!-- ellipsize, inspired from http://stackoverflow.com/questions/13622338 --> + <xsl:choose> + <xsl:when test="string-length($item-content-caption) > $title-length"> + <xsl:variable name="truncated-length" select="$title-length - 3"/> + <xsl:value-of select="normalize-space(substring($item-content-caption, 1, $truncated-length))"/> + <xsl:text>...</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="normalize-space($item-content-caption)"/> + </xsl:otherwise> + </xsl:choose> -- 2.1.4