Convert XHTML to Word ML - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T09:47:47Z http://stackoverflow.com/feeds/question/299235 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/299235/convert-xhtml-to-word-ml 3 Convert XHTML to Word ML Mary 2008-11-18T16:16:13Z 2008-12-09T20:11:23Z <p>What is the best way to convert word HTML to word XML? I cannot buy a tool so need something preferably XSLT which is free and works suitably with basic formatting like paragraphs, lists, bold and italic.</p> http://stackoverflow.com/questions/299235/convert-xhtml-to-word-ml/299264#299264 3 Answer by Chris Charabaruk for Convert XHTML to Word ML Chris Charabaruk 2008-11-18T16:27:56Z 2008-11-18T16:27:56Z <p>XSLT on its own won't do you any good if you want to retain any formatting from outside the XHTML file (for example, in external style sheets). Besides, Word has the ability to open (X)HTML files, and has for a while. It might not come out looking as good as the original, but it works.</p> <p>In fact, if you have Word and some skill with VB Script, I believe that it is possible to write a script that opens a (X)HTML file, then saves it as WordML or plain old Word if you're using Word 2003 or older, or as .docx if you have 2007.</p> http://stackoverflow.com/questions/299235/convert-xhtml-to-word-ml/354064#354064 3 Answer by oillio for Convert XHTML to Word ML oillio 2008-12-09T20:11:23Z 2008-12-09T20:11:23Z <p>Stephane Bouillon wrote a <a href="http://blogs.msdn.com/infopath/archive/2007/03/19/transforming-infopath-rich-text-to-word.aspx" rel="nofollow">blog</a> about this over on MSDN. She supplies a pretty good xslt transform that will do the job. It is designed for use with InfoPath, and only supports the XPATH tags InfoPath will produce so you may need to modify it for your specific application. But it seems to work pretty well and should give you a starting point to work off of.</p>