-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Description
Currently, building and viewing the guide locally is undocumented. The README file would probably be a good place to add this information. This issue would be an excellent task for a first-time contributor with basic familiarity with the command line and installing things with pip.
Here are the rough steps to complete this task:
-
Fork this repository.
-
In your fork, edit
README.rst(the file uses reStructuredText markup which is similar to Markdown; see this reStructuredText reference for help).Add a new section heading ("How to build this guide", perhaps) and step-by-step instructions. Here's how you build the docs:
- Sphinx is required to build the docs. You can install it with
pip install Sphinx. - The build command is
make html(or on Windowsmake.bat html).
Once you've built the guide, you can open
build/html/index.htmlin a web browser to see the guide. You should try following your instructions to make sure they work before opening a pull request. - Sphinx is required to build the docs. You can install it with
-
Commit your changes and push to your fork.
-
Open a pull request and mention this issue.
That's it! Please comment if you need any help. Thanks!
(And if you like this, check out issue #194 where there's lots more to help out with!)