Note
Heavily inspired by the django project's guidelines
We place a high importance on consistency, readability, and completeness of documentation. If a feature is not documented, it does not exist. If a behavior is not documented, it is a bug! We try to treat our documentation like we treat our code: we aim to improve it as often as possible.
Documentation changes generally come in two forms:
- General improvements: typo corrections, error fixes and better explanations through clearer writing and more examples.
- New features: documentation of features that have been added to the framework since the last release.
This section explains how writers can craft their documentation changes in the most useful and least error-prone ways.
Though Binder's documentation is intended to be read as HTML at
https://mybinder.readthedocs.io/en/latest/, we edit it as a collection of text files for
maximum flexibility. These files live in the top-level doc/
directory of
this repository.
If you'd like to start contributing to our docs, get the development version of the Binder docs from the source code repository. The development version has the latest-and-greatest documentation, just as it has latest-and-greatest code.
Binder's documentation uses the Sphinx documentation system, which in turn is based on docutils. The basic idea is that lightly-formatted plain-text documentation is transformed into HTML, PDF, and any other output format.
To build the documentation locally, install Sphinx:
$ pip install Sphinx
Then from the docs
directory, build the HTML:
$ make html
To get started contributing, you'll want to read the :ref:`reStructuredText reference <sphinx:rst-index>`
Your locally-built documentation will be themed differently than the documentation at https://mybinder.readthedocs.io/en/latest/. This is OK! If your changes look good on your local machine, they'll look good on the website.
This documentation uses a helper script in doc/generate_sample_repos.py
in order to
generate the sample repositories page from the binder-examples
GitHub organization.
To run it, navigate to the doc
directory and run:
python generate_sample_repos.py
Note that if you run this multiple times, you'll hit your GitHub API rate limit unless you have a token configured on your computer.
The documentation is organized into several categories:
Tutorials take the reader by the hand through a series of steps to create something.
The important thing in a tutorial is to help the reader achieve something useful, preferably as early as possible, in order to give them confidence.
Explain the nature of the problem we're solving, so that the reader understands what we're trying to achieve. Don't feel that you need to begin with explanations of how things work - what matters is what the reader does, not what you explain. It can be helpful to refer back to what you've done and explain afterwards.
How-to guides are recipes that take the reader through steps in key subjects.
What matters most in a how-to guide is what a user wants to achieve. A how-to should always be result-oriented rather than focused on internal details of how Binder implements whatever is being discussed.
These guides are more advanced than tutorials and assume some knowledge about how Binder works. Assume that the reader has followed the tutorials and don't hesitate to refer the reader back to the appropriate tutorial rather than repeat the same material.
Typically, documentation is written in second person, referring to the reader as “you”. When using pronouns in reference to a hypothetical person, such as "a user with a running notebook", gender neutral pronouns (they/their/them) should be used. Instead of:
- he or she... use they.
- him or her... use them.
- his or her... use their.
- his or hers... use theirs.
- himself or herself... use themselves.
Here are some style guidelines on commonly used terms throughout the documentation:
- Binder -- A catch-all for the Binder project
- Binder repository or A Binder-ready repository -- Refers to a repository that has been prepared to be built by a BinderHub
- BinderHub deployment -- A deployment of BinderHub (such as the one running at
mybinder.org
).
These guidelines regulate the format of our reST (reStructuredText) documentation:
In section titles, capitalize only initial words and proper nouns.
Wrap the documentation at 120 characters wide, unless a code example is significantly less readable when split over two lines, or for another good reason.
Use these heading styles:
=== One === Two === Three ----- Four ~~~~ Five ^^^^
Our policy for new features is:
All new features must have appropriate documentation before they can be merged.
When adding images to the documentation, try to keep them as small as possible. Larger images make the site load more slowly on browsers, and may make the site inaccessible for people with a slow internet connection.
If you're adding screenshots, make the size of your shot as small as possible. If you're uploading large images, consider using an image optimizer in order to reduce its size.
For example, for PNG files, use OptiPNG and
AdvanceCOMP's advpng
:
$ cd docs
$ optipng -o7 -zm1-9 -i0 -strip all `find . -type f -not -path "./_build/*" -name "*.png"`
$ advpng -z4 `find . -type f -not -path "./_build/*" -name "*.png"`
This is based on OptiPNG version 0.7.5. Older versions may complain about the
--strip all
option being lossy.
Before you commit your docs, it's a good idea to run the spelling checker. You'll need to install a couple packages first:
- pyenchant (which requires enchant)
- sphinxcontrib-spelling
Then from the docs
directory, run make spelling
. Wrong words (if any)
along with the file and line number where they occur will be saved to
_build/spelling/output.txt
.
If you encounter false-positives (error output that actually is correct), do one of the following:
- Surround inline code or brand/technology names with grave accents (`).
- Find synonyms that the spell checker recognizes.
- If, and only if, you are sure the word you are using is correct - add it
to
docs/spelling_wordlist
(please keep the list in alphabetical order).