XmlSearch() Ignores CDATA Sections In ColdFusion XPath

<!---
	Now, search for all text nodes in the document that
	are nested within children of the Girl node.
--->
<cfset arrTextNodes = XmlSearch(
	xmlData,
	"/girl/*/text()"
	) />
 
<!--- Dump out text node array. --->
<cfdump
	var="#arrTextNodes#"
	label="Text Nodes via XPath"
	/>

For Cut-and-Paste