tree: 08e397bc313b66607739da26e4c76a20a5c0d04d [path history] [tgz]
  1. configurations/
  2. development-guide/
  3. getstarted/
  4. images/
  5. intro/
  6. conf.py
  7. configuration.rst
  8. development-guide.rst
  9. get-started.rst
  10. index.rst
  11. intro.rst
  12. make.bat
  13. Makefile
  14. README.md
docs/README.md

How to write doc in local

Prepare

  1. Install Python 3.X with zlib, libssl-dev(openssl-devel)
  2. Install pip3
  3. Install sphinx(>=2.0.0) support https://docs.readthedocs.io/en/latest/getting_started.html
  4. Install RTD module & recommonmark
sudo pip install sphinx_rtd_theme
sudo pip install recommonmark

Generate doc

In windows

cd docs
make.bat html

In linux

cd docs
make html

Check the result

  1. See html pages in _build folder
  2. You can start a http server using python -m http.server which will serve at http://0.0.0.0:8000/.