Documentation/content/markdown/index.md
f0sh 77bfb6cc15 Change all Gitea references to Forgejo, fix #315 (#322)
Where possible, changed all references from Gitea to Forgejo.
Wherever documentation mentions specifically Gitea, it is preserved.

Reviewed-on: https://codeberg.org/Codeberg/Documentation/pulls/322
Co-authored-by: f0sh <f0sh@mailbox.org>
Co-committed-by: f0sh <f0sh@mailbox.org>
2023-07-18 00:43:47 +00:00

1.5 KiB

eleventyNavigation
key title icon order
Markdown Writing in Markdown pen-nib 40

In these docs, you will learn how to use Markdown in issues, files and articles on Codeberg.

The Codeberg platform (based on Forgejo) uses Markdown as the markup language for text formatting. Forgejo uses Goldmark as the rendering engine which is compliant with CommonMark 0.30. The documentation of Codeberg is rendered using markdown-it which also supports CommonMark.

Further reading

You can read more about Markdown in the following articles. Additionally, there are many articles on the internet introducing Markdown. Just use your favorite search engine to look them up and learn more about Markdown.

{% assign navPages = collections.all | eleventyNavigation %} {%- for entry in navPages %} {% if entry.url == page.url %} {%- if entry.children.length -%}

{%- for child in entry.children %} {%- endfor %}
Find out more in this section:
{{ child.title }}
{% endif %} {% endif %} {%- endfor %}