X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/a2f080251d11941e8585e5a583919baf8c9a50f9..8a9794cc47a6f389541168ced98e14080907034b:/rss_converter_dilbert.com.xsl diff --git a/rss_converter_dilbert.com.xsl b/rss_converter_dilbert.com.xsl index f255be1..b6d1975 100644 --- a/rss_converter_dilbert.com.xsl +++ b/rss_converter_dilbert.com.xsl @@ -47,7 +47,18 @@ - <xsl:value-of select="$picture-title"/> + <xsl:variable name="title-length" select="140"/> + <!-- ellipsize, inspired from http://stackoverflow.com/questions/13622338 --> + <xsl:choose> + <xsl:when test="string-length($picture-title) > $title-length"> + <xsl:variable name="truncated-length" select="$title-length - 3"/> + <xsl:value-of select="substring($picture-title, 1, $truncated-length)"/> + <xsl:text>...</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$picture-title"/> + </xsl:otherwise> + </xsl:choose> @@ -56,13 +67,16 @@ - + <![CDATA[ - + {$picture-title} ]]> + + +