From Word to Website¶
Create Sphinx environment¶
To install sphinx, you will need to install python, then sphinx.
First time only, you need to create the Sphinx environment.
You can do this with sphinx-quickstart macro (eg by pressing Alt+Shift+S).
The Sphinx environment will be created in the folder containing the Word document unless you give a different location using the outPath option.
From Word to Sphinx¶
Start the sphinxFromWord process using Alt+S
This will create a set of .rst files in the outPath folder.
From Sphinx to Website¶
Build the website from the Sphinx format – do this from a command line:
cd <outPath folder>
make html
Copy the website (which you will find at _build\html
) to your webserver.
For testing, you can just point your web browser to _build\html\index.html
Or, if you set the option UploadTarget, you can use
make upload