xsl-list
[Top] [All Lists]

Re: [xsl] how to include nodes inside CData tags

2013-04-30 10:48:34
In XSLT 3.0 (XPath 3.0) one can use the parse-xml-fragment() function:

 <xsl:sequence select="parse-xml-fragment(question) /node()"/>
Cheers,
Dimitre

On Tue, Apr 30, 2013 at 6:16 AM, Terry Ofner <tdofner(_at_)gmail(_dot_)com> 
wrote:
I need to generate the following format:

<question>
<![CDATA[The city council passed the new <strong>regulation</strong>.]]>
</question>

from this input:

<question>The city council passed the new 
<strong>regulation</strong>.></question>

when I add cdata-section-elements="question" to my xsl:output statement, I 
get this results:

<question><![CDATA[6. The city council passed the new 
]]><strong>regulation</strong><![CDATA[.]]></question>


Is there a way to include the <strong> element in the CDATA?

I have tried to convert the <strong> tag to text:

<xsl:text 
disable-output-escaping="yes">&amp;#x003C;strong&amp;#x003E;</xsl:text>
        <xsl:apply-templates/>
<xsl:text 
disable-output-escaping="yes">&amp;#x003C;/strong&amp;#x003E;</xsl:text>

but to no avail.

I am using xslt 2.0

Any help would be appreciated.

Terry


--~------------------------------------------------------------------
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>
--~--




--
Cheers,
Dimitre Novatchev
---------------------------------------
Truly great madness cannot be achieved without significant intelligence.
---------------------------------------
To invent, you need a good imagination and a pile of junk
-------------------------------------
Never fight an inanimate object
-------------------------------------
To avoid situations in which you might make mistakes may be the
biggest mistake of all
------------------------------------
Quality means doing it right when no one is looking.
-------------------------------------
You've achieved success in your field when you don't know whether what
you're doing is work or play
-------------------------------------
Facts do not cease to exist because they are ignored.
-------------------------------------
Typing monkeys will write all Shakespeare's works in 200yrs.Will they
write all patents, too? :)
-------------------------------------
I finally figured out the only reason to be alive is to enjoy it.

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>