|
| 1 | +<!--- |
| 2 | +Copyright 2020 The HuggingFace Team. All rights reserved. |
| 3 | +
|
| 4 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +you may not use this file except in compliance with the License. |
| 6 | +You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | +Unless required by applicable law or agreed to in writing, software |
| 11 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +See the License for the specific language governing permissions and |
| 14 | +limitations under the License. |
| 15 | +--> |
| 16 | + |
| 17 | +# Generating the documentation |
| 18 | + |
| 19 | +To generate the documentation, you first have to build it. Several packages are necessary to build the doc, |
| 20 | +you can install them with the following command, at the root of the code repository: |
| 21 | + |
| 22 | +```bash |
| 23 | +pip install -e ".[docs]" |
| 24 | +``` |
| 25 | + |
| 26 | +You will also need `nodejs`. Please refer to their [installation page](https://nodejs.org/en/download) |
| 27 | + |
| 28 | +--- |
| 29 | +**NOTE** |
| 30 | + |
| 31 | +You only need to generate the documentation to inspect it locally (if you're planning changes and want to |
| 32 | +check how they look before committing for instance). You don't have to `git commit` the built documentation. |
| 33 | + |
| 34 | +--- |
| 35 | + |
| 36 | +## Building the documentation |
| 37 | + |
| 38 | +Once you have setup the `doc-builder` and additional packages, you can generate the documentation by |
| 39 | +typing the following command: |
| 40 | + |
| 41 | +```bash |
| 42 | +doc-builder build lerobot docs/source/ --build_dir ~/tmp/test-build |
| 43 | +``` |
| 44 | + |
| 45 | +You can adapt the `--build_dir` to set any temporary folder that you prefer. This command will create it and generate |
| 46 | +the MDX files that will be rendered as the documentation on the main website. You can inspect them in your favorite |
| 47 | +Markdown editor. |
| 48 | + |
| 49 | +## Previewing the documentation |
| 50 | + |
| 51 | +To preview the docs, first install the `watchdog` module with: |
| 52 | + |
| 53 | +```bash |
| 54 | +pip install watchdog |
| 55 | +``` |
| 56 | + |
| 57 | +Then run the following command: |
| 58 | + |
| 59 | +```bash |
| 60 | +doc-builder preview lerobot docs/source/ |
| 61 | +``` |
| 62 | + |
| 63 | +The docs will be viewable at [http://localhost:3000](http://localhost:3000). You can also preview the docs once you have opened a PR. You will see a bot add a comment to a link where the documentation with your changes lives. |
| 64 | + |
| 65 | +--- |
| 66 | +**NOTE** |
| 67 | + |
| 68 | +The `preview` command only works with existing doc files. When you add a completely new file, you need to update `_toctree.yml` & restart `preview` command (`ctrl-c` to stop it & call `doc-builder preview ...` again). |
| 69 | + |
| 70 | +--- |
| 71 | + |
| 72 | +## Adding a new element to the navigation bar |
| 73 | + |
| 74 | +Accepted files are Markdown (.md). |
| 75 | + |
| 76 | +Create a file with its extension and put it in the source directory. You can then link it to the toc-tree by putting |
| 77 | +the filename without the extension in the [`_toctree.yml`](https://github.com/huggingface/lerobot/blob/main/docs/source/_toctree.yml) file. |
| 78 | + |
| 79 | +## Renaming section headers and moving sections |
| 80 | + |
| 81 | +It helps to keep the old links working when renaming the section header and/or moving sections from one document to another. This is because the old links are likely to be used in Issues, Forums, and Social media and it'd make for a much more superior user experience if users reading those months later could still easily navigate to the originally intended information. |
| 82 | + |
| 83 | +Therefore, we simply keep a little map of moved sections at the end of the document where the original section was. The key is to preserve the original anchor. |
| 84 | + |
| 85 | +So if you renamed a section from: "Section A" to "Section B", then you can add at the end of the file: |
| 86 | + |
| 87 | +``` |
| 88 | +Sections that were moved: |
| 89 | +
|
| 90 | +[ <a href="#section-b">Section A</a><a id="section-a"></a> ] |
| 91 | +``` |
| 92 | +and of course, if you moved it to another file, then: |
| 93 | + |
| 94 | +``` |
| 95 | +Sections that were moved: |
| 96 | +
|
| 97 | +[ <a href="../new-file#section-b">Section A</a><a id="section-a"></a> ] |
| 98 | +``` |
| 99 | + |
| 100 | +Use the relative style to link to the new file so that the versioned docs continue to work. |
| 101 | + |
| 102 | +For an example of a rich moved sections set please see the very end of [the transformers Trainer doc](https://github.com/huggingface/transformers/blob/main/docs/source/en/main_classes/trainer.md). |
| 103 | + |
| 104 | +### Adding a new tutorial |
| 105 | + |
| 106 | +Adding a new tutorial or section is done in two steps: |
| 107 | + |
| 108 | +- Add a new file under `./source`. This file can either be ReStructuredText (.rst) or Markdown (.md). |
| 109 | +- Link that file in `./source/_toctree.yml` on the correct toc-tree. |
| 110 | + |
| 111 | +Make sure to put your new file under the proper section. If you have a doubt, feel free to ask in a Github Issue or PR. |
| 112 | + |
| 113 | +### Writing source documentation |
| 114 | + |
| 115 | +Values that should be put in `code` should either be surrounded by backticks: \`like so\`. Note that argument names |
| 116 | +and objects like True, None or any strings should usually be put in `code`. |
| 117 | + |
| 118 | +#### Writing a multi-line code block |
| 119 | + |
| 120 | +Multi-line code blocks can be useful for displaying examples. They are done between two lines of three backticks as usual in Markdown: |
| 121 | + |
| 122 | + |
| 123 | +```` |
| 124 | +``` |
| 125 | +# first line of code |
| 126 | +# second line |
| 127 | +# etc |
| 128 | +``` |
| 129 | +```` |
| 130 | + |
| 131 | +#### Adding an image |
| 132 | + |
| 133 | +Due to the rapidly growing repository, it is important to make sure that no files that would significantly weigh down the repository are added. This includes images, videos, and other non-text files. We prefer to leverage a hf.co hosted `dataset` like |
| 134 | +the ones hosted on [`hf-internal-testing`](https://huggingface.co/hf-internal-testing) in which to place these files and reference |
| 135 | +them by URL. We recommend putting them in the following dataset: [huggingface/documentation-images](https://huggingface.co/datasets/huggingface/documentation-images). |
| 136 | +If an external contribution, feel free to add the images to your PR and ask a Hugging Face member to migrate your images |
| 137 | +to this dataset. |
0 commit comments