Files
Gitea-cheatsheet/README.md
2024-12-30 12:25:54 +01:00

41 lines
1.2 KiB
Markdown

# Pense-bête pour la syntaxe Markdown
Sources:
[https://daringfireball.net/projects/markdown/basics](https://daringfireball.net/projects/markdown/basics)
[https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts)
--------------------------------
Texte en italique: (texte encadré entre 2 * ou _)
Some of these words *are emphasized*.
Some of these words _are emphasized also_.
Texte en gras: (texte encadré entre 2 doubles ** ou __)
Use two asterisks for **strong emphasis**.
Or, if you prefer, __use two underscores instead__.
> [!NOTE]
> Useful information that users should know, even when skimming content.
> [!TIP]
> Helpful advice for doing things better or more easily.
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.