... | ... | @@ -35,7 +35,7 @@ sur plusieurs lignes |
|
|
sans mise en forme particulière (**plaintext**)
|
|
|
```
|
|
|
Pour la coloration syntaxique il faut préciser le langage après les trois back quotes de début de bloc
|
|
|
``` python
|
|
|
```python
|
|
|
mon_langage = "python"
|
|
|
for lettre in mon_langage:
|
|
|
if lettre == "p":
|
... | ... | @@ -44,8 +44,9 @@ for lettre in mon_langage: |
|
|
print(lettre)
|
|
|
```
|
|
|
|
|
|
``` html
|
|
|
<circle fill_color="yellow" cx="5" cy = "12" r = "100">
|
|
|
```html
|
|
|
<text cx="5" cy = "12" >avec le mot-clé html : ici, extrait d'un fichier svg ></text>
|
|
|
<circle fill_color="yellow" cx="5" cy = "12" r = "50">
|
|
|
```
|
|
|
|
|
|
|
... | ... | |