I am currently doing XML and XSLT and I have a questionI have done everything and validates fine but does not give me the right answer. One solution that worked fine was using CDATA but I want to use the xmlns="http://www.w3.org/xhtml.here is my relevant codeXML Schema\[code\] <xs:element name="bb"> <xs:complexType mixed="true"> <xs:sequence> <xs:any namespace="http://www.w3.org/1999/xhtml" minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xs:sequence> </xs:complexType> </xs:element>\[/code\]XSLT\[code\]<xsl:template match="xsi:description"> <div style="font-family:calibri;font-size:16"> <span style="color:#000"> Babo is: </span> <xsl:value-of select="." disable-output-escaping="yes"/> </div></xsl:template>\[/code\]XML\[code\]<bb> <li xmlns="http://www.w3.org/1999/xhtml"> hoby </p> <li xmlns="http://www.w3.org/1999/xhtml"> the best </p> </bb>\[/code\]According to my theory it should return (when I convert XML to HTML)[*] hoby [*] the best but it is just returning hoby the best.Why?