Browse Source

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

pull/1060/head
Vegard Stikbakke 5 years ago
committed by GitHub
parent
commit
48c2406495
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      docs/advanced/sql-databases-peewee.md
  2. 10
      docs/tutorial/sql-databases.md

10
docs/advanced/sql-databases-peewee.md

@ -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!}
```

10
docs/tutorial/sql-databases.md

@ -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!}
```

Loading…
Cancel
Save