From 2e9f5489f92d60bcd58da68e412de4730df7deaa Mon Sep 17 00:00:00 2001 From: f50a28a8c82bf67ad820bc82fe37aad2 Date: Fri, 4 Jul 2025 16:20:59 +0000 Subject: [PATCH] Update fichier-markdown.md --- module1/exo2/fichier-markdown.md | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/module1/exo2/fichier-markdown.md b/module1/exo2/fichier-markdown.md index 30d74d2..1241661 100644 --- a/module1/exo2/fichier-markdown.md +++ b/module1/exo2/fichier-markdown.md @@ -1 +1,28 @@ -test \ No newline at end of file +# Partie 1 + +## 1. Introduction + +Ce paragraphe contient du texte *en italique* et du texte **en gras**. + +Vous trouverez la documentation complète sur Markdown sur le site de +[CommonMark](https://commonmark.org/). + +## 2. Listes + +### 2.1 Liste à puce + +- Premier élément +- Deuxième élément +- Troisième élément + +### 2.2 Liste numérotée + +1. Étape 1 +2. Étape 2 +3. Étape 3 + +## 3. Bloc de code + +```python +def hello(): + print("Bonjour, Markdown !") -- 2.18.1