Skip to content

Commit 7d2adb5

Browse files
committed
- Fix ordered list in API documentation
1 parent c1ad7b1 commit 7d2adb5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@ json_explorer data.json --generate python --field-case pascal
10151015

10161016
### Best Practices
10171017

1018-
1. **Always handle file loading errors**:
1018+
#### 1. **Always handle file loading errors**:
10191019

10201020
```python
10211021
try:
@@ -1027,7 +1027,7 @@ except JSONLoaderError as e:
10271027
print(f"JSON loading error: {e}")
10281028
```
10291029

1030-
2. **Check generation results**:
1030+
#### 2. **Check generation results**:
10311031

10321032
```python
10331033
result = generate_from_analysis(analysis, "go", config)
@@ -1037,7 +1037,7 @@ if not result.success:
10371037
raise result.exception
10381038
```
10391039

1040-
3. **Validate configurations**:
1040+
#### 3. **Validate configurations**:
10411041

10421042
```python
10431043
from json_explorer.codegen import load_config

0 commit comments

Comments
 (0)