How to Make a Line Feed in XSLT
- 1). Create a new XSLT document by opening a text editor and saving the file as “example.xslt.”
- 2). Write the following statements at the top of the new text document. These are standard lines of code used in all XSLT documents:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> - 3). Write the following statement to create XLS text tags. These tags contain the code for line feed.
<xsl:text> </xsl:text> - 4). Write the following statement to conclude the file:
</xsl:stylesheet>