|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Literal Text
> Given this XSL: > > <xsl:text></JPanel></xsl:text> > > When run through Lotus XSL Processor I get this output: > > </JPanel> > > When I really want: > > </JPanel> > > What am I doing wrong? <xsl:text> is for generating character data. </JPanel> is a way to represent </JPanel> as character data so it won't be confused with an end-tag. You wanted an end-tag? Well you can't have an end-tag without a start-tag and that makes an element. XSL is about outputing elements, not just individual tags. So don't think of it in terms of wanting </JPanel> but rather wanting an element of the type JPanel. In which case you just use <JPanel>...</JPanel> in your template. You don't need <xsl:text>. Hope this helps James XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
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








