Ask Ben: Changing The Root Node In A ColdFusion XML Document

<!---
	Create an XML string that has a root node that gets
	repeated within the body of the XML as well.
--->
<cfsavecontent variable="strXmlData">
 
	<list id="my-to-do-list">
		<item>
			List Item A
		</item>
		<item>
			List Item B
		</item>
		<item>
			<list>
				<item>
					Sub Item A
				</item>
				<item>
					Sub Item B
				</item>
			</list>
		</item>
		<item>
			List Item D
		</item>
	</list>
 
</cfsavecontent>

For Cut-and-Paste