@@ -98,37 +98,43 @@ mint dev --group admin
98
98
99
99
## Additional commands
100
100
101
- While ` mint dev ` is the most commonly used command, there are other commands you can use to manage your documentation.
101
+ ### Find broken links
102
102
103
- ### Finding broken links
104
-
105
- The CLI can assist with validating reference links made in your documentation. To identify any broken links, use the following command:
103
+ Identify any broken internal links with the following command:
106
104
107
105
``` bash
108
106
mint broken-links
109
107
```
110
108
111
- ### Checking OpenAPI spec
109
+ ### Find accessibility issues
110
+
111
+ Test the color contrast ratios and search for missing alt text on images and videos in your documentation with the following command:
112
+
113
+ ``` bash
114
+ mint a11y
115
+ ```
116
+
117
+ ### Check OpenAPI spec
112
118
113
- You can use the CLI to check your OpenAPI file for errors using the following command:
119
+ Check your OpenAPI file for errors with the following command:
114
120
115
121
``` bash
116
- mint openapi-check < openapiFilenameOrUrl >
122
+ mint openapi-check < OpenAPI filename or URL >
117
123
```
118
124
119
- You can pass in a filename (for example, ` ./openapi.yaml ` ) or a URL (for example, ` https://petstore3.swagger.io/api/v3/openapi.json ` ).
125
+ Pass a filename (for example, ` ./openapi.yaml ` ) or a URL (for example, ` https://petstore3.swagger.io/api/v3/openapi.json ` ).
120
126
121
- ### Renaming files
127
+ ### Rename files
122
128
123
- You can rename and update all references to files using the following command:
129
+ Rename and update all references to files with the following command:
124
130
125
131
``` bash
126
- mint rename < oldFilename > < newFilename >
132
+ mint rename < path/to/old-filename > < path/to/new-filename >
127
133
```
128
134
129
- ### Migrating MDX endpoint pages
135
+ ### Migrate MDX endpoint pages
130
136
131
- You can migrate MDX endpoint pages to autogenerated pages from your OpenAPI specification using the following command:
137
+ Migrate MDX endpoint pages to autogenerated pages from your OpenAPI specification with the following command:
132
138
133
139
``` bash
134
140
mint migrate-mdx
0 commit comments