XSLT newbie here. I want to accomplish the following. If paragraph is the second one, and it has less than 200 characters, i want to display the next one.
Here is what I have
<xsl:if test="count(preceding-sibling:
) = 2">
<p>
<xsl:apply-templates />
</p>
</xsl:if>
How do i add the condition for the preceeding para to have less than 200 characters. What would that condition look like?
Any help would be appreciated.
Thanks
Here is what I have
<xsl:if test="count(preceding-sibling:
<p>
<xsl:apply-templates />
</p>
</xsl:if>
How do i add the condition for the preceeding para to have less than 200 characters. What would that condition look like?
Any help would be appreciated.
Thanks