You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Improve language clarity and conciseness
- Remove unnecessary words like 'Simply' and 'will'
- Use present tense for more direct communication
- Fix preposition usage for better grammar
- Streamline explanations for better readability
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Copy file name to clipboardExpand all lines: settings/broken-links.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,21 +4,21 @@ description: "Tools to help prevent invalid links"
4
4
icon: 'link-2'
5
5
---
6
6
7
-
When you change the path of a file in your docs folder, it will also change the path of the URL to that page. This may happen when restructuring your docs or changing the sidebar title.
7
+
When you change the path of a file in your docs folder, it also changes the URL path to that page. This may happen when restructuring your docs or changing the sidebar title.
8
8
9
9
## Broken Links
10
10
11
-
Catch broken links with our CLI. Simply [install the CLI](/installation) and run the command:
11
+
Catch broken links with our CLI. [Install the CLI](/installation) and run the command:
12
12
13
13
```bash
14
14
mint broken-links
15
15
```
16
16
17
-
The CLI will identify any relative links in your docs that don't exist.
17
+
The CLI identifies any relative links in your docs that don't exist.
18
18
19
19
## Redirects
20
20
21
-
Set up 301 redirects by adding the `redirects` field into your `docs.json` file.
21
+
Set up 301 redirects by adding the `redirects` field to your `docs.json` file.
22
22
23
23
```json
24
24
"redirects": [
@@ -29,9 +29,9 @@ Set up 301 redirects by adding the `redirects` field into your `docs.json` file.
29
29
]
30
30
```
31
31
32
-
This will permanently redirect`/source/path` to `/destination/path` so that you don't lose any previous SEO for the original page.
32
+
This permanently redirects`/source/path` to `/destination/path` so that you don't lose any previous SEO for the original page.
33
33
34
-
To match a wildcard path, use `*` after a parameter. In this example, `/beta/:slug*`will match`/beta/introduction` and redirects it to `/v2/introduction`.
34
+
To match a wildcard path, use `*` after a parameter. In this example, `/beta/:slug*`matches`/beta/introduction` and redirects it to `/v2/introduction`.
0 commit comments