Sphinx supports a few output formats:

  • HTML separated files (with html or dirhtml)
  • Latex which is useful for creating .pdf or .ps
  • text

Instead I would like to obtain a Microsoft Word file. With other doc generator I managed generating the single html output and then converting it to the Microsoft Word format using the Word application.

Unfortunately I don't know a way to generate neither the word neither the HTML single page format.

Do you have any hints? I can't write a builder by myself.

link|improve this question

62% accept rate
feedback

4 Answers

To convert files in restructured text to MSdoc, I use rst2odt and next unoconv. Look next script:

#!/bin/sh
rst2odt $1 $1.odt
unoconv -f doc $1.odt
rm $1.odt

With rst2odt you can use your own stylesheet: unoconv comes with OpenOffice and also allows to apply an Open Office style (template) during the conversion. Simply edit a converted document, change styles, add headers and footers, save that as an ODF Text Document Template (OTT) and use this as part of the conversion, like:

unoconv -f doc -t template.ott $1.odt

to use that template for various conversions later on.

link|improve this answer
feedback

The best option might be rst -> odt -> doc

link|improve this answer
feedback

I realize this is an old question, but I found that LibreOffice supports the following way of doing conversion (assuming soffice.exe is in your path):

soffice.exe --invisible --convert-to doc myInputFile.odt

Some things I have read say to use the --headless option rather than --invisible. Both seem to work on Windows.

You can start with the rst2odt.py script and then do the above to convert to an MS Word document.

Here is a link with additional start up options for LibreOffice: http://help.libreoffice.org/Common/Starting_the_Software_With_Parameters

Here is a link with file types supported by OpenOffice which, I believe, LibreOffice should also support: http://wiki.services.openoffice.org/wiki/Framework/Article/Filter/FilterList_OOo_3_0

link|improve this answer
feedback

I don't now what Sphinx is, but you could create a rtf file or html file or something similar.

See the following blogpost for more information/approaches : OFFICE AUTOMATION

and from there : How to use ASP to generate a Rich Text Format (RTF) document to stream to Microsoft Word

This article describes how you can generate Rich Text Format (RTF) files with ASP script and then stream those files to Microsoft Word. This technique provides an alternative to server-side Automation of Microsoft Word for run-time document generation.

You don't use ASP script (who does :-) ), but for the idea.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.