We use travis-sphinx to generate & deploy HTML documentation.
$ cd <espnet_root>
$ pip install -r doc/requirements.txtYou can generate local HTML manually using sphinx Makefile
$ cd <espnet_root>/doc
$ make htmlindex.html will be created at doc/_build/html/index.html
or using travis-sphinx
$ cd <espnet_root>
$ travis-sphinx build --source=doc --nowarnindex.html will be created at doc/build/index.html
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.