Highlight Markdown vs reStructuredText differences for inline styles

pull/12525/head
Sage Abdullah 2024-10-31 15:38:57 +00:00
rodzic 121624d5b1
commit dddf9bfd81
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -89,6 +89,12 @@ Use **bold** and _italic_ sparingly and inline `code` when relevant.
Use **bold** and _italic_ sparingly and inline `code` when relevant.
```
Keep in mind that in reStructuredText, italic is written with `*`, and inline code must be written with double backticks, like ``` ``code`` ```.
```rst
Use **bold** and *italic* sparingly and inline ``code`` when relevant.
```
### Code blocks
Make sure to include the correct language code for syntax highlighting, and to format your code according to our coding guidelines. Frequently used: `python`, `css`, `html`, `html+django`, `javascript`, `sh`.