]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:art: Fix markdown code section rendering error in SQL tutorial (#1015)
authorVegard Stikbakke <vegard.stikbakke@gmail.com>
Sat, 29 Feb 2020 11:40:09 +0000 (12:40 +0100)
committerGitHub <noreply@github.com>
Sat, 29 Feb 2020 11:40:09 +0000 (12:40 +0100)
docs/advanced/sql-databases-peewee.md
docs/tutorial/sql-databases.md

index b6650bd82c0be650e4535d26731e69ce005c0239..4c05daf7710f84590a66c989667d02c0b37eb57b 100644 (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!}
 ```
 
index 44c06eb2440896dd7eeb0c4dd13aaee803cf1676..d4f456209dc4367e1bce69089eb393b342185f7f 100644 (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!}
 ```