Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 794 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 794 Bytes

ESPnet document generation

Install

We use travis-sphinx to generate & deploy HTML documentation.

$ cd <espnet_root>
$ pip install -r doc/requirements.txt

Generate HTML

You can generate local HTML manually using sphinx Makefile

$ cd <espnet_root>/doc
$ make html

index.html will be created at doc/_build/html/index.html

or using travis-sphinx

$ cd <espnet_root>
$ travis-sphinx build --source=doc --nowarn

index.html will be created at doc/build/index.html

Deploy

When your PR is merged into master branch, our Travis-CI will automatically deploy your sphinx html into https://espnet.github.io/espnet/ by travis-sphinx deploy.