Improve clarity between Markdown/MyST, rST, and Sphinx in docs guidelines

Add more emphasis on the divide between when to use Markdown and when to
use rST.

Also improve examples for versionadded and versionchanged directives.
pull/12525/head
Sage Abdullah 2024-10-31 16:39:45 +00:00
rodzic 0dc1698857
commit 795ca50dc8
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
1 zmienionych plików z 12 dodań i 4 usunięć

Wyświetl plik

@ -15,7 +15,7 @@ To ensure consistency in tone and language, follow the [Google developer documen
## Formatting recommendations
Wagtails documentation uses a mixture of [Markdown](https://myst-parser.readthedocs.io/en/stable/syntax/syntax.html) and [reStructuredText](https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html). We encourage writing documentation in Markdown first, and only reaching for more advanced reStructuredText formatting if there is a compelling reason.
Wagtails documentation uses a mixture of [Markdown (with MyST)](https://myst-parser.readthedocs.io/en/stable/syntax/syntax.html) and [reStructuredText](https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html). We encourage writing documentation in Markdown first, and only reaching for more advanced reStructuredText formatting if there is a compelling reason. Docstrings in Python code must be written in reStructuredText, as using Markdown is not yet supported.
Here are formats we encourage using when writing documentation for Wagtail.
@ -479,6 +479,8 @@ Images are hard to keep up-to-date as documentation evolves, but can be worthwhi
With its [autodoc](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html) feature, Sphinx supports writing documentation in Python docstrings for subsequent integration in the projects documentation pages. This is a very powerful feature that we highly recommend using to document Wagtails APIs.
Currently, this requires the `eval-rst` directive. Anything inside the directive needs to be written in reStructuredText syntax.
```{eval-rst}
.. module:: wagtail.coreutils
@ -524,7 +526,7 @@ Only use tables when needed, using the [GitHub Flavored Markdown table syntax](h
### Tables of contents
`toctree` and `contents` can be used as reStructuredText directives.
The `toctree` and `contents` directives can be used to render tables of contents.
```{toctree}
---
@ -547,9 +549,11 @@ Only use tables when needed, using the [GitHub Flavored Markdown table syntax](h
Sphinx offers release-metadata directives to present information about new or updated features in a consistent manner.
```{versionadded} 2.15
The `WAGTAIL_NEW_SETTING` setting was added.
```
```{versionchanged} 2.15
The `WAGTAIL_OLD_SETTING` setting was deprecated.
```
<details>
@ -557,11 +561,11 @@ Sphinx offers release-metadata directives to present information about new or up
<summary>Rendered output</summary>
```{versionadded} 2.15
The `WAGTAIL_NEW_SETTING` setting was added.
```
```{versionchanged} 2.15
The `WAGTAIL_OLD_SETTING` setting was deprecated.
```
</details>
@ -616,6 +620,10 @@ We generally want to favor Markdown over reStructuredText, to make it as simple
If you want to use a specific Sphinx directive, consult with core contributors to see whether its usage is justified, and document its expected usage on this page.
### Markdown in reStructuredText
Conversely, do not use Markdown syntax in places where reStructuredText is required. A common mistake is writing Markdown-style inline `` `code` `` (with single backticks) inside Python code docstrings and inside `eval-rst` directives. This is not supported and will not render correctly.
### Arbitrary HTML
While our documentation tooling offers some support for embedding arbitrary HTML, this is frowned upon. Only do so if there is a necessity, and if the formatting is unlikely to need updates.