Mise à jour de la partie Markdown

parent 36c13d2d
......@@ -29,6 +29,13 @@ __This will also be bold__
_You **can** combine them_
~~This text will be crossed~~
##### Liste à cocher
[ ] A
[x] B
[ ] C
##### Lists : Unordered
- Item 1
- Item 2
......@@ -55,8 +62,23 @@ As Kanye West said:
> We're living the future so
> the present is our past.
#### Inline code
To print some text with Python, you should use the `print()` function.
#### Inline code (avec le caractère backtick ou apostrophe inversée)
To print some text with Python, you should use the `print()` function > next section.
#### Code
Pour identifier tout un bloc de texte comme du code source, vous pourrez utiliser soit la touche de **tabulation ou quatre espaces consécutives**, et ce pour chaque ligne concernée. Pour indenter davantage certaines lignes, il vous suffira d’insérer des tabulations ou des espaces.
***
Encore écrit ici en texte ordinaire
Ceci est la première ligne du bloc de code
La seconde ligne est encore plus en retrait
C’est une autre ligne du bloc de code
C’est ici que le texte ordinaire recommence
***
```
print("Hello world!")
```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment