From 5c63ce666c1be3b4d5ef9272da459ef10c9770e8 Mon Sep 17 00:00:00 2001 From: Suby Raman Date: Thu, 2 Feb 2017 14:21:59 -0500 Subject: [PATCH] punctuation --- docs/sanic/routing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sanic/routing.md b/docs/sanic/routing.md index 84945904..0cadd707 100644 --- a/docs/sanic/routing.md +++ b/docs/sanic/routing.md @@ -120,11 +120,11 @@ app.add_route(handler2, '/folder/') app.add_route(person_handler2, '/person/', methods=['GET']) ``` -## URL building with `url_for`. +## URL building with `url_for` Sanic provides a `url_for` method, to generate URLs based on the handler method name. This is useful if you want to avoid hardcoding url paths into your app; instead, you can just reference the handler name. For example: -``` +```python @app.route('/') async def index(request): # generate a URL for the endpoint `post_handler` @@ -141,7 +141,7 @@ async def post_handler(request, post_id): Other things to keep in mind when using `url_for`: - Keyword arguments passed to `url_for` that are not request parameters will be included in the URL's query string. For example: -``` +```python url = app.url_for('post_handler', post_id=5, arg_one='one', arg_two='two') # /posts/5?arg_one=one&arg_two=two ```