Guest User

Untitled

a guest
Jan 17th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. disable-output-escaping="yes"
  2.  
  3. <xsl:choose>
  4. <xsl:when test="string-length(fields/field_article/data) > 900">
  5. <xsl:value-of select="substring(fields/field_article/data,0, 900)" disable-output-escaping="yes"/>...
  6. </xsl:when>
  7. <xsl:otherwise>
  8. <xsl:value-of select="fields/field_article/data" disable-output-escaping="yes"/>
  9. </xsl:otherwise>
  10. </xsl:choose>
Add Comment
Please, Sign In to add comment