From 09319a5e19ae49fb6199b0a453075efd961942a1 Mon Sep 17 00:00:00 2001 From: riturajD Date: Fri, 7 Dec 2012 01:47:45 -0800 Subject: [PATCH] corrected links that used the incorrect markdown syntax. --- Large-app-how-to.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Large-app-how-to.md b/Large-app-how-to.md index 2934785..c13cfcd 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -9,7 +9,7 @@ Please feel free to fix and add you own tips. ## Flask -[http://flask.pocoo.org/docs/installation/](Flask Installation) +[Flask Installation](http://flask.pocoo.org/docs/installation/) I recommend using virtualenv: easy and allows multiple environments on the same machine and doesn't even require you to have super user rights on the machine (as the libs are localy installed). ## Flask-SQLAlchemy @@ -18,7 +18,7 @@ SQLAlchemy provide an easy and advanced way to serialize your object to differen pip install flask-sqlalchemy -[http://packages.python.org/Flask-SQLAlchemy/](More here about the Flask-SQLAlchemy package) +[More here about the Flask-SQLAlchemy package](http://packages.python.org/Flask-SQLAlchemy/) ## Flask-WTF @@ -26,7 +26,7 @@ WTForms provides an easy way to handle user's data submission. pip install Flask-WTF -[http://packages.python.org/Flask-WTF/](More here about the Flask-WTF package) +[More here about the Flask-WTF package](http://packages.python.org/Flask-WTF/) # Overview @@ -211,7 +211,7 @@ Now that we've done our object model, time to build the form that goes with it. The first parameters for the field is the label we'll want to display for the field. For example the name field will be labelled as NickName on the form. For the password fields, another useful validator got used here, EqualTo, it compares the data contained in the current field with the data of the other specified field. -Form more details of what can be done with WTForms check [http://wtforms.simplecodes.com/docs/dev/] +For more details of what can be done with WTForms check [here](http://wtforms.simplecodes.com/docs/dev/). ### First view