From c2f3d0edc2ea832b85e9e520dc077cdb26c5ed39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?agentzh=20=28=E7=AB=A0=E4=BA=A6=E6=98=A5=29?= Date: Mon, 15 Aug 2011 15:26:03 +0800 Subject: [PATCH] fixed special char escaping in internal cross links in README.markdown. --- README.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.markdown b/README.markdown index c45962c6..87a77a44 100644 --- a/README.markdown +++ b/README.markdown @@ -1365,7 +1365,7 @@ Log arguments concatenated to error.log with the given logging level. Lua `nil` arguments are accepted and result in literal `"nil"`, and Lua booleans result in literal `"true"` or `"false"` outputs. -The `log_level` argument can take constants like `ngx.ERR` and `ngx.WARN`. Check out [Nginx log level constants](http://wiki.nginx.org/NginxHttpLuaModule#Nginx.20log.20level.20constants) for details. +The `log_level` argument can take constants like `ngx.ERR` and `ngx.WARN`. Check out [Nginx log level constants](http://wiki.nginx.org/NginxHttpLuaModule#Nginx_log_level_constants) for details. ngx.flush --------- @@ -1373,7 +1373,7 @@ ngx.flush **context:** *rewrite_by_lua*, access_by_lua*, content_by_lua** -Force flushing the response outputs. This operation has no effect in HTTP 1.0 buffering output mode. See [HTTP 1.0 support](http://wiki.nginx.org/NginxHttpLuaModule#HTTP.201.0.20support). +Force flushing the response outputs. This operation has no effect in HTTP 1.0 buffering output mode. See [HTTP 1.0 support](http://wiki.nginx.org/NginxHttpLuaModule#HTTP_1.0_support). ngx.exit -------- @@ -1387,7 +1387,7 @@ status code to nginx. When `status == 0` (`ngx.OK`), it will quits the current phase handler (or content handler if [content_by_lua](http://wiki.nginx.org/NginxHttpLuaModule#content_by_lua) directives are used). The `status` argument can be `ngx.OK`, `ngx.ERROR`, `ngx.HTTP_NOT_FOUND`, -`ngx.HTTP_MOVED_TEMPORARILY`, or other [HTTP status constants](http://wiki.nginx.org/NginxHttpLuaModule#HTTP.20status.20constants). +`ngx.HTTP_MOVED_TEMPORARILY`, or other [HTTP status constants](http://wiki.nginx.org/NginxHttpLuaModule#HTTP_status_constants). ngx.eof -------