From 9d7488f59dc2ac1176b6fc9c175e55a35661ebc4 Mon Sep 17 00:00:00 2001 From: "C. Bess" Date: Sat, 15 Oct 2016 13:09:16 -0500 Subject: [PATCH] Fix list formatting in Request Data docs Added two spaces after line to force newline in markdown. Code emphasized in lists. --- docs/request_data.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/request_data.md b/docs/request_data.md index b006c08c..bc89bb88 100644 --- a/docs/request_data.md +++ b/docs/request_data.md @@ -4,10 +4,10 @@ The following request variables are accessible as properties: -request.files (dictionary of File objects) - List of files that have a name, body, and type -request.json (any) - JSON body -request.args (dict) - Query String variables. Use getlist to get multiple of the same name -request.form (dict) - Posted form variables. Use getlist to get multiple of the same name +`request.files` (dictionary of File objects) - List of files that have a name, body, and type +`request.json` (any) - JSON body +`request.args` (dict) - Query String variables. Use getlist to get multiple of the same name +`request.form` (dict) - Posted form variables. Use getlist to get multiple of the same name See request.py for more information @@ -40,4 +40,4 @@ def post_json(request): @app.route("/query_string") def query_string(request): return json({ "parsed": True, "args": request.args, "url": request.url, "query_string": request.query_string }) -``` \ No newline at end of file +```