forked from orbit-oss/flask
Make script output into comments to not break syntax highlighting
http://flask.pocoo.org/docs/1.0/quickstart/#url-building In the URL Building section of the quickstart, the script output is shown right after the code. This breaks syntax highlighting for the whole code-block. To fix this, I have made the output into comments.
This commit is contained in:
parent
c92001d2fb
commit
eae6440605
1 changed files with 4 additions and 4 deletions
|
|
@ -301,10 +301,10 @@ Python shell. See :ref:`context-locals`. ::
|
||||||
print(url_for('login', next='/'))
|
print(url_for('login', next='/'))
|
||||||
print(url_for('profile', username='John Doe'))
|
print(url_for('profile', username='John Doe'))
|
||||||
|
|
||||||
/
|
# /
|
||||||
/login
|
# /login
|
||||||
/login?next=/
|
# /login?next=/
|
||||||
/user/John%20Doe
|
# /user/John%20Doe
|
||||||
|
|
||||||
HTTP Methods
|
HTTP Methods
|
||||||
````````````
|
````````````
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue