diff --git a/src/content/docs/en/4x/guide/behind-proxies.mdx b/src/content/docs/en/4x/guide/behind-proxies.mdx
index dd1f1d00df..ba088fb210 100644
--- a/src/content/docs/en/4x/guide/behind-proxies.mdx
+++ b/src/content/docs/en/4x/guide/behind-proxies.mdx
@@ -17,6 +17,7 @@ the combination of the setting in Express matches how the reverse proxy operates
The application setting `trust proxy` may be set to one of the values listed in the following table.
+
-
- | Object |
- Description |
-
-
- | Node.js |
- Express 4 requires Node.js 0.10.x or later and has dropped support for Node.js 0.8.x. |
-
-
- | `http.createServer()` |
-
- The `http` module is no longer needed, unless you need to directly work with it
- (socket.io/SPDY/HTTPS). The app can be started by using the `app.listen()` function.
- |
-
-
- | `app.configure()` |
-
- The `app.configure()` function has been removed. Use the `process.env.NODE_ENV` or
- `app.get('env')` function to detect the environment and configure the app accordingly.
- |
-
-
- | `json spaces` |
-
- The `json spaces` application property is disabled by default in Express 4.
- |
-
-
- | `req.accepted()` |
-
- Use `req.accepts()`, `req.acceptsEncodings()`, `req.acceptsCharsets()`, and
- `req.acceptsLanguages()`.
- |
-
-
- | `res.location()` |
- No longer resolves relative URLs. |
-
-
- | `req.params` |
- Was an array; now an object. |
-
-
- | `res.locals` |
- Was a function; now an object. |
-
-
- | `res.headerSent` |
- Changed to `res.headersSent`. |
-
-
- | `app.route` |
- Now available as `app.mountpath`. |
-
-
- | `res.on('header')` |
- Removed. |
-
-
- | `res.charset` |
- Removed. |
-
-
- | `res.setHeader('Set-Cookie', val)` |
-
- Functionality is now limited to setting the basic cookie value. Use `res.cookie()` for added
- functionality.
- |
-
-
+| Object | Description |
+| ---------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| Node.js | Express 4 requires Node.js 0.10.x or later and has dropped support for Node.js 0.8.x. |
+| `http.createServer()` | The `http` module is no longer needed, unless you need to directly work with it (socket.io/SPDY/HTTPS). The app can be started by using the `app.listen()` function. |
+| `app.configure()` | The `app.configure()` function has been removed. Use the `process.env.NODE_ENV` or `app.get('env')` function to detect the environment and configure the app accordingly. |
+| `json spaces` | The `json spaces` application property is disabled by default in Express 4. |
+| `req.accepted()` | Use `req.accepts()`, `req.acceptsEncodings()`, `req.acceptsCharsets()`, and `req.acceptsLanguages()`. |
+| `res.location()` | No longer resolves relative URLs. |
+| `req.params` | Was an array; now an object. |
+| `res.locals` | Was a function; now an object. |
+| `res.headerSent` | Changed to `res.headersSent`. |
+| `app.route` | Now available as `app.mountpath`. |
+| `res.on('header')` | Removed. |
+| `res.charset` | Removed. |
+| `res.setHeader('Set-Cookie', val)` | Functionality is now limited to setting the basic cookie value. Use `res.cookie()` for added functionality. |
## Example app migration