]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Update includes for `docs/en/docs/tutorial/cors.md` (#12637)
authorVISHNU V S <84698110+vishnuvskvkl@users.noreply.github.com>
Sat, 9 Nov 2024 15:26:44 +0000 (20:56 +0530)
committerGitHub <noreply@github.com>
Sat, 9 Nov 2024 15:26:44 +0000 (15:26 +0000)
docs/en/docs/tutorial/cors.md

index 8dfc9bad9504e0c3644ad1fa5a2c60d4d409728a..a5d9b763ae627ab16941df81eebc120b68879ad3 100644 (file)
@@ -46,9 +46,8 @@ You can also specify whether your backend allows:
 * Specific HTTP methods (`POST`, `PUT`) or all of them with the wildcard `"*"`.
 * Specific HTTP headers or all of them with the wildcard `"*"`.
 
-```Python hl_lines="2  6-11  13-19"
-{!../../docs_src/cors/tutorial001.py!}
-```
+{* ../../docs_src/cors/tutorial001.py hl[2,6:11,13:19] *}
+
 
 The default parameters used by the `CORSMiddleware` implementation are restrictive by default, so you'll need to explicitly enable particular origins, methods, or headers, in order for browsers to be permitted to use them in a Cross-Domain context.