|
| 1 | + Ideally, each issue represents a single small project |
| 2 | + to fix one well-defined problem with the documentation. |
| 3 | + Examples of well-defined single issues include: |
| 4 | + |
| 5 | + - Write a section to the form questions document describing new type of question |
| 6 | + - Fix the formatting in the contributor's guide |
| 7 | + - Redirect old page URI to new |
| 8 | + - Add style testing for ODK2 branding |
| 9 | + - Change the display font |
| 10 | + |
| 11 | + As these examples show, documentation projects include: |
| 12 | + |
| 13 | + - writing new documentation |
| 14 | + - editing existing documentation |
| 15 | + - coding related to the design of the documentation website |
| 16 | + - coding related to how the documentation is built, tested, and published |
| 17 | + |
| 18 | + This means that, whatever your skill or interest, |
| 19 | + there is probably an issue you can work on. |
| 20 | + |
| 21 | + Sometimes, issues are not well defined yet. |
| 22 | + This might be because we only have a vague idea of a need, |
| 23 | + or because we're not yet sure how to solve a problem, |
| 24 | + or because no one has had the time to write down the details. |
| 25 | + As you are getting started, |
| 26 | + try to focus on issues that have a clear goal. |
| 27 | + Once you have some experience with the documentation, |
| 28 | + you can start to help clarify issues so we can move forward on them. |
| 29 | + |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | + |
| 35 | +.. note:: |
| 36 | + |
| 37 | + If you rename a document file (:file:`*.rst`), |
| 38 | + be sure that you add the redirect in your PR. |
| 39 | + |
| 40 | + To add the redirect, go to :file:`s3_website.yml`, |
| 41 | + and add a mapping from the old file name to the new file name |
| 42 | + below the **redirects:** line, one mapping per line. |
| 43 | + |
| 44 | + If you have renamed :file:`old-name.rst` to :file:`new-name.rst`: |
| 45 | + |
| 46 | + .. code-block:: yaml |
| 47 | + |
| 48 | + redirects: |
| 49 | + old-name/index.html: new-name |
| 50 | + |
| 51 | + Notice the inclusion of ``/index.html`` on the left side. |
| 52 | + |
0 commit comments