🎨 Fix markdown code section rendering error in SQL tutorial (#1015)

This commit is contained in:
Vegard Stikbakke 2020-02-29 12:40:09 +01:00 committed by GitHub
parent 9958d93120
commit 48c2406495
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View File

@ -429,31 +429,31 @@ Repeat the same process with the 10 tabs. This time all of them will wait and yo
* `sql_app/database.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases_peewee/sql_app/database.py!}
```
* `sql_app/models.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases_peewee/sql_app/models.py!}
```
* `sql_app/schemas.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases_peewee/sql_app/schemas.py!}
```
* `sql_app/crud.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases_peewee/sql_app/crud.py!}
```
* `sql_app/main.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases_peewee/sql_app/main.py!}
```

View File

@ -558,31 +558,31 @@ For example, in a background task worker with <a href="http://www.celeryproject.
* `sql_app/database.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/database.py!}
```
* `sql_app/models.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/models.py!}
```
* `sql_app/schemas.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/schemas.py!}
```
* `sql_app/crud.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/crud.py!}
```
* `sql_app/main.py`:
```Python hl_lines=""
```Python
{!./src/sql_databases/sql_app/main.py!}
```