xsl-list
[Top] [All Lists]

[xsl] Output < and > in the attribute from the style sheet

2012-04-21 06:09:40
In on of the sheets I am working on there is the sign ">" in on of the
attributes. I am trying to get this in the resulting XML.
So I have this in my template:

            <dependencies>
                <xsl:text disable-output-escaping="yes" >
                    <![CDATA[
                             <dependency org="org.slf4j" name="slf4j-api" 
rev="1.6.4"
conf="provided->*" />
                             <dependency org="org.slf4j" name="slf4j-log4j12" 
rev="1.6.4"
conf="compile->*" />
                             <dependency org="log4j" name="log4j" rev="1.2.16"
conf="compile->*,!sources,!javadoc" >
                             <exclude module="jmxri" />
                             <exclude module="jmxtools" />
                             </dependency>
                             <dependency org="junit" name="junit" rev="4.8" 
conf="test->*" />
                             <dependency org="javax.servlet" 
name="javax.servlet-api"
rev="3.0.1" conf="provided->*">
                             <artifact name="javax.servlet-api" type="jar" />
                             </dependency>
                             ]]>
                </xsl:text>

I am using text and CDATA, as you can see in my style sheet.
Is there a better way to output this without escaping the XML and
generate the indented XML ?

Thank you.

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--