Skip to content

Commit 65e480e

Browse files
committed
Update internal ref links
1 parent d89382c commit 65e480e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@
7171
- Placeholders are delimited with `%` symbols. Like this: `%TEMPLATE_PLACEHOLDER%`.
7272
- It works by extracting placeholder name from response text and passing it to user provided function which should return actual value to be used instead of placeholder.
7373
- Since it's user provided function, it is possible for library users to implement conditional processing and cycles themselves.
74-
- Since it's impossible to know the actual response size after template processing step in advance (and, therefore, to include it in response headers), the response becomes [chunked](#chunked-response).
74+
- Since it's impossible to know the actual response size after template processing step in advance (and, therefore, to include it in response headers), the response becomes [chunked](responses.md#chunked-response).

docs/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ void loop(){
139139
}
140140
```
141141
142-
**IMPORTANT**: Authentication should now use `AsyncAuthenticationMiddleware` instead of the deprecated methods. See the [How to use authentication with AsyncAuthenticationMiddleware](middleware.md#how-to-use-authentication-with-asyncauthenticationmiddleware) section.
142+
**IMPORTANT**: Authentication should now use `AsyncAuthenticationMiddleware` instead of the deprecated methods. See the [Authentication with AsyncAuthenticationMiddleware](middleware.md#authentication-with-asyncauthenticationmiddleware) section.
143143
144144
### Setup global and class functions as request handlers
145145

docs/static-files.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ handler->setLastModified(date_modified);
123123
### Specifying Template Processor callback
124124

125125
It is possible to specify template processor for static files. For information on template processor see
126-
[Respond with content coming from a File containing templates](#respond-with-content-coming-from-a-file-containing-templates).
126+
[Respond with content coming from a File containing templates](responses.md#respond-with-content-coming-from-a-file-containing-templates).
127127

128128
```cpp
129129
String processor(const String& var)
@@ -206,5 +206,5 @@ webServer.onNotFound([](AsyncWebServerRequest *request) {
206206
});
207207
```
208208

209-
You may want to try [Respond with file content using a callback and extra headers](#respond-with-file-content-using-a-callback-and-extra-headers)
209+
You may want to try [Respond with file content using a callback and extra headers](responses.md#respond-with-file-content-using-a-callback-and-extra-headers)
210210
For actual serving the file.

0 commit comments

Comments
 (0)