Skip to content

Commit 48c2406

Browse files
authored
🎨 Fix markdown code section rendering error in SQL tutorial (fastapi#1015)
1 parent 9958d93 commit 48c2406

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/advanced/sql-databases-peewee.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -429,31 +429,31 @@ Repeat the same process with the 10 tabs. This time all of them will wait and yo
429429

430430
* `sql_app/database.py`:
431431

432-
```Python hl_lines=""
432+
```Python
433433
{!./src/sql_databases_peewee/sql_app/database.py!}
434434
```
435435

436436
* `sql_app/models.py`:
437437

438-
```Python hl_lines=""
438+
```Python
439439
{!./src/sql_databases_peewee/sql_app/models.py!}
440440
```
441441

442442
* `sql_app/schemas.py`:
443443

444-
```Python hl_lines=""
444+
```Python
445445
{!./src/sql_databases_peewee/sql_app/schemas.py!}
446446
```
447447

448448
* `sql_app/crud.py`:
449449

450-
```Python hl_lines=""
450+
```Python
451451
{!./src/sql_databases_peewee/sql_app/crud.py!}
452452
```
453453

454454
* `sql_app/main.py`:
455455

456-
```Python hl_lines=""
456+
```Python
457457
{!./src/sql_databases_peewee/sql_app/main.py!}
458458
```
459459

docs/tutorial/sql-databases.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -558,31 +558,31 @@ For example, in a background task worker with <a href="http://www.celeryproject.
558558

559559
* `sql_app/database.py`:
560560

561-
```Python hl_lines=""
561+
```Python
562562
{!./src/sql_databases/sql_app/database.py!}
563563
```
564564

565565
* `sql_app/models.py`:
566566

567-
```Python hl_lines=""
567+
```Python
568568
{!./src/sql_databases/sql_app/models.py!}
569569
```
570570

571571
* `sql_app/schemas.py`:
572572

573-
```Python hl_lines=""
573+
```Python
574574
{!./src/sql_databases/sql_app/schemas.py!}
575575
```
576576

577577
* `sql_app/crud.py`:
578578

579-
```Python hl_lines=""
579+
```Python
580580
{!./src/sql_databases/sql_app/crud.py!}
581581
```
582582

583583
* `sql_app/main.py`:
584584

585-
```Python hl_lines=""
585+
```Python
586586
{!./src/sql_databases/sql_app/main.py!}
587587
```
588588

0 commit comments

Comments
 (0)