I simply need to convert a XML document into a WordML document (if it is possible to call it simple!) with this form (without processing instructions): \[code\]<body> <p> <r>This is the <italic>standard</italic> text run.</r> </p></body>\[/code\]The transformed XML should look like this, as per an WordML document: \[code\]<w:body> <w> <w:r> <w:t>This is the </w:t> </w:r> </w> <w> <wPr> <w:i/> </wPr> <w:r> <w:t>standard</w:t> </w:r> </w> <w> <w:r> <w:t> text run.</w:t> </w:r> </w></w:body>\[/code\]How should i create the XSL Stylesheet for properly handle the Italic tags??..