remove mkdocs specific syntax

This commit is contained in:
Marcello 2024-06-16 19:14:59 +02:00
parent 8d08c1964f
commit 8026e1465b
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk
77 changed files with 1128 additions and 1128 deletions

View file

@ -34,7 +34,7 @@ WHITESPACE can be inserted between any pair of tokens.
## Usage
```python linenums="1"
```python
# serialize obj as JSON formatted stream to fp
json.dump(obj, fp, cls=None, indent=None, separators=None, sort_keys=False)
@ -90,7 +90,7 @@ Conversions (Python -> Json):
## Extending JSONEncoder (Example)
```python linenums="1"
```python
import json
class ComplexEncoder(json.JSONEncoder):
@ -103,7 +103,7 @@ class ComplexEncoder(json.JSONEncoder):
## Retrieving Data from json dict
```python linenums="1"
```python
data = json.loads(json)
data["key"] # retrieve the value associated with the key
data["outer key"]["nested key"] # nested key value retrieval