BotSharp/docs/README.md

12 lines
319 B
Markdown
Raw Permalink Normal View History

2023-06-19 12:43:36 +00:00
# How to contribute docs
We use [Sphinx](https://www.sphinx-doc.org/en/master/) to build document, please make sure you installed the appropriate Sphinx plugins before making the docs.
```shell
pip install -U sphinx
pip install recommonmark
pip install sphinx_rtd_theme
2023-08-01 00:57:11 +00:00
pip install myst-parser
2023-06-19 12:43:36 +00:00
cd docs
./make html
```