XmlSearch() Ignores CDATA Sections In ColdFusion XPath

<!---
	This time, let's create an XML document that mixes
	inline node text with CDATA node text.
--->
<cfxml variable="xmlData">
 
	<girl>
		<name>
			Sarah Vivenzio
		</name>
		<age>
			27
		</age>
		<description>
			She is insanely hot. I swear, you'd have to see it
			<![CDATA[ to believe it, but you should just ]]>
			take my word for it. Pretty pretty pretty good.
		</description>
	</girl>
 
</cfxml>
 
<!--- Output description text. --->
<cfset WriteOutput( xmlData.girl.description.XmlText ) />

For Cut-and-Paste