diff --git a/module1/exo2/fichier-markdown.md b/module1/exo2/fichier-markdown.md index 30d74d258442c7c65512eafab474568dd706c430..1241661003bd90b890eb64d497d99abadb5b4f03 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 !")