From 0b8e01b4450d0ba8cb65751d866568fddc155fa4 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sun, 11 Apr 2010 04:00:17 +0200 Subject: [PATCH] Linked escape --- docs/quickstart.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 38e37f26..91ac4255 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -583,6 +583,9 @@ sessions work:: # set the secret key. keep this really secret: app.secret_key = 'the secret key' +The here mentioned :func:`~flask.escape` does escaping for you if you are +not using the template engine (like in this example). + Message Flashing ----------------