make compliant with mistune update

This commit is contained in:
Yax 2022-07-30 17:16:35 +02:00
parent fc61c0b9c7
commit ae83dbaf80
30 changed files with 74 additions and 94 deletions

View file

@ -21,7 +21,7 @@ Python dans un *virtualenv* de préférence, avec le gestionnaire de paquets
Voici un exemple d'envoi d'e-mail en Python :
``` python
```python
import requests
headers = {'Content-Type': 'application/json; charset=utf-8'}
msg = {
@ -38,7 +38,7 @@ else:
Et voici le même exemple en ligne de commande avec CURL :
``` shell
```shell
curl -X POST -H "Content-Type: application/json; charset=utf-8"
-d '{"to":"bill@phoenix.com", "subject":"Got it",
"content":"See you soon!\n\n-- John"}'