介绍
Sphinx使用Python编写,最初为Python语言创建文档。可以使用sphinx编写文档、说明、书籍等。
安装
- 安装python
- 安装sphinx
http://jwch.sdut.edu.cn/book/tool/UseSphinx.html
easy_install sphinx
使用
- 初始化:运行
sphinx-quickstart
(另外可以使用sphinx-apidoc),按要求选择,也可以全部默认 - 修改主题
- 在conf.py文件中修改
html_theme = 'classic'
- 在conf.py文件中修改
- 编译
- 在项目根目录下执行
make html
- 在项目根目录下执行
- 加入markdown格式支持
- 托管到read the docs