X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/4b941ccd0115402aa2c7b0f50578f7f2a0e8d40a..e2e4404f14ad9c387a7b3c1d0c97ab289a7576b0:/rss_converter_instagram.com.xsl diff --git a/rss_converter_instagram.com.xsl b/rss_converter_instagram.com.xsl index d9dfcdd..cc540ce 100644 --- a/rss_converter_instagram.com.xsl +++ b/rss_converter_instagram.com.xsl @@ -32,20 +32,31 @@ https://instagram.com - - + + - + + - - <xsl:value-of select="$item-content-title"/> + <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> @@ -59,12 +70,12 @@ <![CDATA[ -


- +


+ ]]>
- +