Application Platform 10.3 | Application Platform API | webMethods Tag Library for JSP | <webm:nl>
 
<webm:nl>
Use the <webm:nl> tag to insert a newline character in the HTML page produced from the JSP.
Use this tag when you want to preserve the ending of a line that ends in a tag. This tag does not insert the HTML line break, <br>. It inserts a line break character, which Integration Server treats as white space. If you do not explicitly insert this tag on such lines, Integration Server drops the newline character following that tag.
Syntax
<webm:nl/>
Example
To insert the values of the variables carrier, serviceLevel, and arrivalDate on separate lines in the HTML page:
<hr>
<p>Shipping Info:
<webm:value variable="carrier"/><webm:nl/>
<webm:value variable="serviceLevel"/><webm:nl/>
<webm:value variable="arrivalDate"/><webm:nl/></p>
<hr>