https://github.com/dalibo/powa-doc
PoWA user documentation
https://github.com/dalibo/powa-doc
Last synced: 12 months ago
JSON representation
PoWA user documentation
- Host: GitHub
- URL: https://github.com/dalibo/powa-doc
- Owner: dalibo
- Created: 2015-02-01T09:09:16.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-23T19:45:49.000Z (over 11 years ago)
- Last Synced: 2025-03-05T17:40:46.837Z (over 1 year ago)
- Language: Python
- Homepage: http://powa.readthedocs.org/
- Size: 577 KB
- Stars: 0
- Watchers: 14
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: security.rst
Awesome Lists containing this project
README
PoWA Documentation
=========================
See http://powa.readthedocs.org/
[](https://readthedocs.org/projects/powa/?badge=latest)
Compile the doc
-----------------------------------
* Install Sphinx : ``apt-get install python-sphinx``
* Build : ``make html``
Sphinx Theme
------------------------------------------------------------
Install the [Read The Doc theme](https://github.com/snide/sphinx_rtd_theme)
``
pip install sphinx_rtd_theme
``
And then add the following lines to the ``conf.py`` file:
``
import sphinx_rtd_theme
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
``