|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: XSL-FO / XSLT Transformations & Line Breaks in XML
> Is there a more generic way of including a line break at any given point in > an XML tag? As would normally be done in HTML using the "<br/>" tag? You presumably want to add a linebreak in element content, ie explictly _not_ in a tag. Unlike HTML, XML elements have no predefined meaning. If you are using a predefined document type then it may have a linebreak element (for example xhtml has a br element) you'd need to check the definition of the format that you are using. If your input is using a document format of your own construction you can use any markup you like, such as <linebreakhere/> and then add a template that converts that element to an html br <xsl:template match="para1"> <p> <xsl:apply-templates/> </p> </xsl:template> <xsl:template match="linebreakhere"> <br/> </xsl:template> David ________________________________________________________________________ This e-mail has been scanned for all viruses by Star. The service is powered by MessageLabs. For more information on a proactive anti-virus service working around the clock, around the globe, visit: http://www.star.net.uk ________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








