What is the best way of converting a Microsoft Word document into XHTML? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T22:31:10Zhttp://stackoverflow.com/feeds/question/304410http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/304410/what-is-the-best-way-of-converting-a-microsoft-word-document-into-xhtml1What is the best way of converting a Microsoft Word document into XHTML?Marcel Tjandraatmadja2008-11-20T05:25:15Z2009-05-14T07:00:16Z
<p>I would like to programatically convert a Microsoft Word document into XHTML. The language of choice is PHP, so I would appreciate any suggestions with PHP.</p>
<p>The initial idea is trying to convert the doc file into odt, and then use the <a href="http://odt2xhtml.eu.org/index_en.html" rel="nofollow">Odt2Xhtml</a> PHP class to get it into XHTML format.</p>
<p>Any better way to do this?</p>
http://stackoverflow.com/questions/304410/what-is-the-best-way-of-converting-a-microsoft-word-document-into-xhtml/304478#3044782Answer by ykaganovich for What is the best way of converting a Microsoft Word document into XHTML?ykaganovich2008-11-20T06:22:55Z2008-11-20T06:22:55Z<p>The most robust way is to <a href="http://www.joelonsoftware.com/items/2008/02/19.html" rel="nofollow">use COM to let Word save the document as HTML</a>.</p>
<p>I don't know whether Word can generate XHTML directly; if not, Google shows <a href="http://www.google.com/search?q=convert+HTML+to+XHTML" rel="nofollow">plenty of options</a> for doing that conversion.</p>
http://stackoverflow.com/questions/304410/what-is-the-best-way-of-converting-a-microsoft-word-document-into-xhtml/304589#3045894Answer by Ciaran McNulty for What is the best way of converting a Microsoft Word document into XHTML?Ciaran McNulty2008-11-20T07:52:35Z2008-11-20T07:52:35Z<p>If you're running Linux one way to go would be to install OpenOffice on the server.</p>
<p>Example instructions for a 'headless' (i.e. no UI) install can be found <a href="http://www.oooforum.org/forum/viewtopic.phtml?t=6691" rel="nofollow">here</a>.</p>
<p>You could then use a nice CLI app like <a href="http://dag.wieers.com/home-made/unoconv/" rel="nofollow">unoconv</a> executed via shell_exec to do your conversions via PHP.</p>
http://stackoverflow.com/questions/304410/what-is-the-best-way-of-converting-a-microsoft-word-document-into-xhtml/688310#6883100Answer by plutext for What is the best way of converting a Microsoft Word document into XHTML?plutext2009-03-27T02:26:43Z2009-03-27T02:26:43Z<p>See <a href="http://www.codeplex.com/OpenXMLViewer" rel="nofollow">http://www.codeplex.com/OpenXMLViewer</a> which includes an XSLT you could adapt, which is what I did in docx4j. Note however, that that XSLT is not for the faint of heart!</p>
http://stackoverflow.com/questions/304410/what-is-the-best-way-of-converting-a-microsoft-word-document-into-xhtml/861921#8619210Answer by Leo Bonnafe for What is the best way of converting a Microsoft Word document into XHTML?Leo Bonnafe2009-05-14T07:00:16Z2009-05-14T07:00:16Z<p><strong>phpLiveDocx</strong> offers a really easy way to convert Microsoft Word documents.</p>
<p>Learn more at the project web site:</p>
<p><a href="http://www.phplivedocx.org" rel="nofollow">http://www.phplivedocx.org</a></p>
<p>You can also use phpLiveDocx to merge textual data with MS Word templates and save the resulting document to DOC, DOCX, RTF, PDF or TXT.</p>
<p>The component is enterprise-ready and has been written for the Zend Framework.</p>