How to Make a Line Feed in XSLT

104 16
    • 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>&#10;</xsl:text>

    • 4). Write the following statement to conclude the file:

      </xsl:stylesheet>

Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.