commit ec2d818cc4975bef2f6d0c6f36ffd5bcf9ea4443 parent 28f02d2eaa30c08743d95565fe7404cba17b3955 Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> Date: Sat, 23 Apr 2022 16:16:58 +0300 doc/examples: improved formatting Diffstat:
| M | doc/examples/simplepost.c | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/examples/simplepost.c b/doc/examples/simplepost.c @@ -34,12 +34,12 @@ struct connection_info_struct }; const char *askpage = - "<html><body>\ - What's your name, Sir?<br>\ - <form action=\"/namepost\" method=\"post\">\ - <input name=\"name\" type=\"text\">\ - <input type=\"submit\" value=\" Send \"></form>\ - </body></html>"; + "<html><body>\n" + "What's your name, Sir?<br>\n" + "<form action=\"/namepost\" method=\"post\">\n" + "<input name=\"name\" type=\"text\">\n" + "<input type=\"submit\" value=\" Send \"></form>\n" + "</body></html>"; #define GREETINGPAGE \ "<html><body><h1>Welcome, %s!</center></h1></body></html>"