From 7cb048ea9a6979d2e72b2adea762f99fc7efec01 Mon Sep 17 00:00:00 2001 From: Jul Date: Mon, 30 Dec 2024 12:25:54 +0100 Subject: [PATCH] Actualiser README.md --- README.md | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) 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.