diff --git a/README.md b/README.md index 8d7325f..75fa4a5 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,40 @@ -# Gitea-cheatsheet +# 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.