2022-04-13 04:18:00 -07:00
|
|
|
---
|
|
|
|
|
eleventyNavigation:
|
|
|
|
|
key: ImprovingTheDocumentation
|
|
|
|
|
title: Improving the Documentation
|
|
|
|
|
icon: book
|
|
|
|
|
order: 76
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
We're very happy you're considering to contribute to Codeberg Documentation!
|
|
|
|
|
|
2023-07-08 09:27:44 -07:00
|
|
|
{% assign navPages = collections.all | eleventyNavigation %}
|
|
|
|
|
{%- for entry in navPages %}
|
|
|
|
|
{% if entry.url == page.url %}
|
|
|
|
|
{%- if entry.children.length -%}
|
2024-06-11 00:51:22 -07:00
|
|
|
|
2023-07-08 09:27:44 -07:00
|
|
|
<table class="table">
|
|
|
|
|
<thead>
|
|
|
|
|
<th> Find out more in this section: </th>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{%- for child in entry.children %}
|
|
|
|
|
<tr><td>
|
|
|
|
|
<a href="{{ child.url }}">{{ child.title }}</a>
|
|
|
|
|
</tr></td>
|
|
|
|
|
{%- endfor %}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{%- endfor %}
|
|
|
|
|
|
2022-04-13 04:18:00 -07:00
|
|
|
### How do I contribute to Codeberg Documentation?
|
|
|
|
|
|
2025-06-14 02:38:21 -07:00
|
|
|
To contribute to Codeberg Documentation, the first thing you should do (if you haven't already done it) is to create
|
|
|
|
|
your own fork of the [Codeberg/Documentation repository](https://codeberg.org/Codeberg/Documentation).
|
2022-04-13 04:18:00 -07:00
|
|
|
|
2025-06-14 02:38:21 -07:00
|
|
|
Then, for each major contribution that you want to make (e.g. for each new article), create a new branch, make your
|
|
|
|
|
contributions and finally make a Pull Request to the Codeberg/Documentation repository.
|
|
|
|
|
You can find the source code to all articles in the `content` directory of Codeberg Documentation's source tree.
|
2022-04-13 04:18:00 -07:00
|
|
|
|
2025-06-14 02:38:21 -07:00
|
|
|
The Codeberg Documentation collaborators will then review your pull request, they may request some changes and
|
|
|
|
|
eventually, once all is good, they may merge your contribution into the official repository and deploy it to the live site.
|