Is there a way to add a line break to an XPath expression?
Here is my current expression which isn't working
{concat(@Parameter1, $NullObj, @Parameter2)}
Where the variable $NullObj
is equal to 

the hex value of the LINEFEED character.
This outputs as "Parameter1 Parameter2."
EDIT: Unfortunately, I'm using Xpath / Xsl 1.0.
EDIT: Sample code below. XML:
<Post>
<Title>Title Text</Title>
<Body>Body Text </Body>
<Author>Author Name</Author>
</Post>
Sample XSL
<xsl:Variable name="NullObj">
<xsl:value-of select="'
'" />
</xsl:variable>
Edit2: Full Xpath context, as requested:
<xsl:value-of select="concat("The title is", @Title, $NullObj, "The Body reads:", @Body, $NullObj, "The Author is", @Author)" />
The resulting output does not include line breaks. Am I missing something fundamental?
I've also tried replacing 

with
, but no luck.
Thanks for your patience.