From ac1f4171fa7b064148c089c9c4178a3f8d355793 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Wed, 2 Dec 2009 14:44:29 +0000 Subject: [PATCH] Tutorial escaping clarification svn: r17162 --- collects/web-server/scribblings/tutorial/continue.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/web-server/scribblings/tutorial/continue.scrbl b/collects/web-server/scribblings/tutorial/continue.scrbl index b366eb8322..263236034a 100644 --- a/collects/web-server/scribblings/tutorial/continue.scrbl +++ b/collects/web-server/scribblings/tutorial/continue.scrbl @@ -100,7 +100,7 @@ responses. One basic kind of response is to show an HTML page. For example: -The HTML @tt{hello} is represented as @scheme["hello"]. +The HTML @tt{hello} is represented as @scheme["hello"]. Strings are automatically escaped when output. This guarantees valid HTML. Therefore, the value @scheme["Unfinished tag"] is rendered as @tt{<b>Unfinished tag} not @tt{Unfinished tag}. Similarly, @scheme["Finished tag"] is rendered as @tt{<i>Finished tag</i>} not @tt{Finished tag}. @tt{

This is an example

} is