I am using an if statement that tests the amount of lines in a cell.
<xsl:if test="string-length(@Example) - string-length(translate(@Example, '
', '')) < 10">
When I type in this code and hit save, that code turns into this:
<xsl:if test="string-length(@Example) - string-length(translate(@Example, '
', '')) < 10">
Instead of 

, I get a literal blank line.
I'm not using a <xsl: stylesheet>
because I don't quite understand it and prefer not to use it. I'd be happy if someone could help me make it so that this doesn't happen (

turns into literal), or better yet, provide me another method for testing how many lines are in @Example. Thanks.