How can I allow an HTML tag to sit inside a XML node???

ie:
<People>
<Text>test gfsdfgfdg <p>wfdsgdfgsa</p>dsdgf </Text>
</People>

    You could mark the contents as CDATA:

    <Text><![CDATA[test gfsdfgfdg <p>wfdsgdfgsa</p>dsdgf]]></Text>
    
      Write a Reply...