Skip to content

Commit d5ffc36

Browse files
authoredMar 6, 2024··
Fixes docs typos (#178)
1 parent 016cf6f commit d5ffc36

13 files changed

+105
-105
lines changed
 

‎doc-site/pages/$.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ It provides many features that help developers **build a React App quickly**:
2929
- **Fantastic development experience**. Start the local development server in a blink, even when you have many pages. Hot module replacement works with React and Mdx, so you can get instant feedback when you edit your code.
3030
- **Filesystem based routing**. By following a [simple filesystem routing convention](/fs-routing), It is easy to create, locate and develop pages. You don't need to worry about routing configuration. For advanced users, you can [tell vite-pages how to find page files](/advanced-fs-routing), so that vite-pages can work with any project file structure.
3131
- **Support Mdx**. You can write content with either "normal React" or [Mdx](https://mdxjs.com/). Normal Reactjs is more flexible and composable. While Mdx is more readable and easier to edit. You can choose the proper format for your task. These formats can import each other like normal esModules.
32-
- **Powerful [theme customization](/theme-customization)**. Vite-pages itself doesn't render any concrete DOM node. You can customize **anything** on the page with theme. It is easy to write a theme that is sharable and configurable. If you use typescript, the users of your theme will get type-check and intelliSense.
32+
- **Powerful [theme customization](/theme-customization)**. Vite-pages itself doesn't render any concrete DOM node. You can customize **anything** on the page with a theme. It is easy to write a theme that is sharable and configurable. If you use typescript, the users of your theme will get type-check and intelliSense.
3333
- **Automatic code splitting based on pages**. Visitors don't need to download the whole app, they only load page data as needed.
34-
- **Support static site generation out of the box**. By pre-rendering your app into HTML at buildtime, users can see the content before any JS is loaded. With this feature, you can [deploy your single page apps on GitHub Pages](https://github.com/vitejs/vite-plugin-react-pages/tree/main/doc-site)(which [doesn't natively support single page apps](https://www.google.com/search?q=github+pages+single+page+apps&oq=github+pages+single+page+apps)).
35-
- **Tools for Library documentation**. Vite-pages provides [some tools](/library-documentation-tools) to reduce the maintenance costs for library authors and make their documents more easily to read.
34+
- **Support static site generation out of the box**. By pre-rendering your app into HTML at build-time, users can see the content before any JS is loaded. With this feature, you can [deploy your single page apps on GitHub Pages](https://github.com/vitejs/vite-plugin-react-pages/tree/main/doc-site)(which [doesn't natively support single page apps](https://www.google.com/search?q=github+pages+single+page+apps&oq=github+pages+single+page+apps)).
35+
- **Tools for Library documentation**. Vite-pages provides [some tools](/library-documentation-tools) to reduce the maintenance costs for library authors and make their documents easier to read.
3636

3737
## Getting stated
3838

‎doc-site/pages/advanced-fs-routing$.mdx

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ subGroup: advanced
88

99
> The "Basic Filesystem Routing Convention" should satisfy most users' needs. **You probably don't need to read this advanced guide**.
1010
11-
For advanced users, vite-pages let you implement your own filesystem routing convention: you can **teach vite-pages how to collect page data from your project**.
11+
For advanced users, vite-pages lets you implement your own filesystem routing convention: you can **teach vite-pages how to collect page data from your project**.
1212

1313
When [configuring vite-plugin-react-pages](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts), you can pass the `pageStrategy` option. It should be an instance of `PageStrategy` class. Here is an example of customizing pageStrategy:
1414

@@ -19,19 +19,19 @@ vite.config.ts:
1919
syntax="ts"
2020
/>
2121

22-
With this custom pageStrategy, page files don't need to ends with `$`. Instead, they need to match the pattern `**/index.{md,mdx,js,jsx,ts,tsx}`.
22+
With this custom pageStrategy, page files don't need to end with `$`. Instead, they need to match the pattern `**/index.{md,mdx,js,jsx,ts,tsx}`.
2323

2424
> Checkout complete examples in [the custom-find-pages2 fixture](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/playground/custom-find-pages2/vite.config.ts) or [the project scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts).
2525
2626
### Steps of customizing pageStrategy
2727

28-
As shown by the above example, here is the usual steps to customize pageStrategy:
28+
As shown by the above example, here are the usual steps to customize pageStrategy:
2929

3030
1. Define a `findPages` function and pass it to `PageStrategy` constructor.
3131
2. Inside the `findPages`, use `helpers.watchFiles(baseDir, glob, fileHandler)` to find the files that you need.
3232
- vite-pages will pass the glob(or glob array) to [chokidar](https://github.com/paulmillr/chokidar). vite-pages use chokidar to scan the fileSystem and watch for files.
33-
- Whenever a file is scaned, added or updated, vite-pages will call the `fileHandler` with that file. When the file is deleted, vite-pages will automatically delete the related page data.
34-
3. Inside the `fileHandler`, read the infomation from the `file` and register page data by calling `fileHandlerAPI.addPageData`.
33+
- Whenever a file is scanned, added or updated, vite-pages will call the `fileHandler` with that file. When the file is deleted, vite-pages will automatically delete the related page data.
34+
3. Inside the `fileHandler`, read the information from the `file` and register page data by calling `fileHandlerAPI.addPageData`.
3535
- There are two more helpers inside `fileHandlerAPI` that help you to update page data. We will introduce them in the following section.
3636

3737
### Handle file events and update page data
@@ -51,7 +51,7 @@ The `fileHandlerAPI` contains a set of helpers that help you to update page data
5151
5252
#### fileHandlerAPI.addPageData(dataPiece)
5353
54-
When you have extracted some [page data](/page-data) (which is called dataPiece) in the `fileHandler`, call `addPageData` to register the data. So that vite-pages will load the data into theme for rendering.
54+
When you have extracted some [page data](/page-data) (which is called dataPiece) in the `fileHandler`, call `addPageData` to register the data. So that vite-pages will load the data into the theme for rendering.
5555
5656
The dataPiece should conform to this interface:
5757
@@ -114,7 +114,7 @@ Checkout [the custom-find-pages fixture](https://github.com/vitejs/vite-plugin-r
114114

115115
#### fileHandlerAPI.getStaticData(pageId)
116116

117-
Similar to the `fileHandlerAPI.getRuntimeData` API, you can use `fileHandlerAPI.getStaticData` to get the staticData of a certain page. And tou can read or mutate the properties of it:
117+
Similar to the `fileHandlerAPI.getRuntimeData` API, you can use `fileHandlerAPI.getStaticData` to get the staticData of a certain page. And you can read or mutate the properties of it:
118118

119119
```ts
120120
const staticData = fileHandlerAPI.getStaticData(pageId)
@@ -155,11 +155,11 @@ export class DefaultPageStrategy extends PageStrategy {
155155

156156
#### Examples
157157

158-
For real-life examples of customizing pageStrategy, checkout ["Example: develop a component library"](/examples/component-library).
158+
For real-life examples of customizing pageStrategy, check out ["Example: develop a component library"](/examples/component-library).
159159

160160
#### Types
161161

162-
Here is the relavent types:
162+
Here are the relavent types:
163163

164164
<FileText
165165
src="../../packages/react-pages/src/node/page-strategy/types.doc.ts"

‎doc-site/pages/examples/component-library$.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ subGroup: advanced
99

1010
This is an example of using "Advanced Filesystem Routing" inside a component library project.
1111

12-
Suppose you are developing a React component library. Your project have file structure like this:
12+
Suppose you are developing a React component library. Your project will have a file structure like this:
1313

1414
```text
1515
src
@@ -30,7 +30,7 @@ src
3030
└── index.ts
3131
```
3232

33-
You want to use vite as your local demo development environment (because it is blazingly fast). **How to collect all components and all demos from this project?** The file structure doesn't follow the [Basic Filesystem Routing Convention](/fs-routing).
33+
You want to use Vite as your local demo development environment (because it is blazingly fast). **How to collect all components and all demos from this project?** The file structure doesn't follow the [Basic Filesystem Routing Convention](/fs-routing).
3434

3535
The answer: implement your own filesystem routing convention!
3636

@@ -39,7 +39,7 @@ vite.config.ts:
3939

4040
We use `api.getRuntimeData(pageId)` and `api.getStaticData(pageId)` inside fileHandlers to get the pageData object. We can mutate the data object, and vite-pages will update its pages accordingly.
4141

42-
Checkout the complete example in [the library project scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts).
42+
Check out the complete example in [the library project scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts).
4343
You can initialize this project [with one command](/) (choose `lib` template).
4444

4545
## Monorepo
@@ -48,7 +48,7 @@ In some cases, we want to publish each component in their own packages.
4848

4949
> Monorepo has more advantages when components are complex and tend to evolve independently. If we use a single package to publish all these components like the above example, all components share a version number. If we need to introduce a breaking change in a component, we have to bump the major version of the whole package. But with the monorepo we only need to bump the major version of that sub-package. Users will be more confident to upgrade.
5050
51-
In that case, we create a seperate package to run vite-pages, collecting all components and their demos. The project setup will look like this:
51+
In that case, we create a separate package to run vite-pages, collecting all components and their demos. The project setup will look like this:
5252

5353
```text
5454
packages
@@ -80,5 +80,5 @@ packages
8080
└── package.json
8181
```
8282

83-
Checkout the complete example in [the lib-monorepo scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib-monorepo/packages/demos/vite.config.ts).
83+
Check out the complete example in [the lib-monorepo scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib-monorepo/packages/demos/vite.config.ts).
8484
You can initialize this project [with one command](/) (choose `lib-monorepo` template).

‎doc-site/pages/fs-routing$.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Vite-pages generates page routes based on your project file structure (filesyste
1111

1212
The basic filesystem routing convention is very intuitive. It works out of the box and doesn't need any config. It should satisfy most users' needs.
1313

14-
**You can create a page by simply creating a file**: `page-name$.tsx`. Notice the `$` **at the end of the filename**. Vite-pages recognizes it and know it is a page entry.
14+
**You can create a page by simply creating a file**: `page-name$.tsx`. Notice the `$` **at the end of the filename**. Vite-pages recognizes it and knows it is a page entry.
1515

1616
If the filename is `index$.tsx`, the page route path will be the path of the directory. See examples below.
1717

@@ -30,12 +30,12 @@ If the filename is `index$.tsx`, the page route path will be the path of the dir
3030
| `dir-name/[id]/index$.tsx` (URL Paramater) | `/dir-name/:id` |
3131
| `dir-name/[id]/[id2]$.tsx` (URL Paramaters) | `/dir-name/:id/:id2` |
3232

33-
Theme can decide what to render when no page matches the url. Checkout [the theme doc](/theme-customization).
33+
Theme can decide what to render when no page matches the URL. Check out [the theme doc](/theme-customization).
3434

35-
If a page path contains url paramaters, you can use [useParams](https://reactrouter.com/web/example/url-params) of `react-router-dom` to access the actual paramaters.
35+
If a page path contains URL parameters, you can use [useParams](https://reactrouter.com/web/example/url-params) of `react-router-dom` to access the actual parameters.
3636

37-
Checkout [the basic fixture](https://github.com/vitejs/vite-plugin-react-pages/tree/main/packages/playground/basic/pages) for an example.
37+
Check out [the basic fixture](https://github.com/vitejs/vite-plugin-react-pages/tree/main/packages/playground/basic/pages) for an example.
3838

3939
## Advanced Filesystem Routing
4040

41-
The "Basic Filesystem Routing Convention" should satisfy most users' needs. For advanced users, vite-pages let you implement your own filesystem routing convention: you can **teach vite-pages how to collect page data from your project**. Checkout [advanced fs routing](/advanced-fs-routing).
41+
The "Basic Filesystem Routing Convention" should satisfy most users' needs. For advanced users, vite-pages lets you implement your own filesystem routing convention: you can **teach vite-pages how to collect page data from your project**. Checkout [advanced fs routing](/advanced-fs-routing).

‎doc-site/pages/i18n$.mdx

+11-11
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ subGroup: advanced
66

77
# Internationalization
88

9-
i18n support can be provided by theme. For example, [the official theme(vite-pages-theme-doc)](/official-theme) support i18n. This document shows how to create a multi-lingual site with it.
9+
i18n support can be provided by theme. For example, [the official theme(vite-pages-theme-doc)](/official-theme) supports i18n. This document shows how to create a multi-lingual site with it.
1010

1111
## Define i18n metadata in the theme config
1212

@@ -78,17 +78,17 @@ interface LocalConfig {
7878
}
7979
```
8080

81-
With this i18n metadata, the theme can decide which locale to apply. For any specific page, it match its pagePath with each `LocalConfig.routePrefix`:
81+
With this i18n metadata, the theme can decide which locale to apply. For any specific page, it matches its pagePath with each `LocalConfig.routePrefix`:
8282

83-
- If the pagePath match with a `LocalConfig.routePrefix`, this locale will apply to the page
83+
- If the pagePath matches with a `LocalConfig.routePrefix`, this locale will apply to the page
8484
- If the pagePath doesn't match any routePrefix, the `I18nConfig.defaultLocale` will apply to the page
8585

8686
With the example config above, page `/foo$.tsx` will have the locale keyed with `en`. Page `/zh/foo$.tsx` will have the locale keyed with `zh`.
8787

8888
What does it mean when we say "the page P has locale L" (or "locale L applies to page P")? It means two things:
8989

90-
- Most site-level theme configs can decide their value based on the current applied locale. So that you can render `topNavs` and `sideNavs` with the correct language.
91-
- In any React Component, you can get the current applied locale from `useThemeCtx()` so that you can decide which i18n translated message to render.
90+
- Most site-level theme configs can decide their value based on the currently applied locale. So that you can render `topNavs` and `sideNavs` with the correct language.
91+
- In any React Component, you can get the currently applied locale from `useThemeCtx()` so that you can decide which i18n translated message to render.
9292

9393
We will talk about these techniques in the following sections.
9494

@@ -191,18 +191,18 @@ docs
191191
└─ baz.md
192192
```
193193

194-
Each page with default locale should have its translated version. For example, `/zh/foo$.md` should be the chinese-translated version of `/foo$.md`.
194+
Each page with the default locale should have its translated version. For example, `/zh/foo$.md` should be the Chinese-translated version of `/foo$.md`.
195195

196196
### Markdown pages: translate them into each locale
197197

198-
Here is a markdown page for default locale (`/foo$.md`):
198+
Here is a markdown page for the default locale (`/foo$.md`):
199199

200200
```md
201201
---
202-
title: This is the title written in default locale
202+
title: This is the title written in the default locale
203203
---
204204

205-
This is the markdown content written in default locale.
205+
This is the markdown content written in the default locale.
206206
```
207207

208208
Here is the translated markdown page (`/zh/foo$.md`):
@@ -258,7 +258,7 @@ const messages = {
258258
export default Page
259259
```
260260

261-
When defining the page for other locale (`/zh/bar$.tsx`), you can **re-export the React Component**:
261+
When defining the page for the other locale (`/zh/bar$.tsx`), you can **re-export the React Component**:
262262

263263
```tsx
264264
/**
@@ -272,7 +272,7 @@ Notice that we reuse the same React Component for multiple locales. And we defin
272272

273273
> When using i18n library like `react-intl`, and you need to wrap your App with some custom React Component, you can use `ThemeConfig.AppWrapper`.
274274
275-
### Get current locale in React Components or Hooks
275+
### Get the current locale in React Components or Hooks
276276

277277
```tsx
278278
import { useThemeCtx } from 'vite-pages-theme-doc'

‎doc-site/pages/library-documentation-tools/index$.mdx

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ subGroup: advanced
66

77
# Library Documentation Tools
88

9-
Vite-pages provides some tools to reduce the maintenance costs for library authors and make their documents more easily to read.
9+
Vite-pages provides some tools to reduce the maintenance costs for library authors and make their documents easier to read.
1010

1111
> These tools are mostly for library authors.
1212
1313
## Demos
1414

15-
Demos (or stories) are the fixtures that you use when you are developing your library locally.
15+
Demos (or stories) are the fixtures that you use when you are developing your library locally.
1616
Vite-pages allows you to render demos into your app (which can be the document of your library). Using this feature, vite-pages app can not only serve as your **local develop environment** (so that you can debug your demos and your libary code locally), but also the **document for your library** (so that the users of your library can see your demos and lean how to use it).
1717

1818
The following markdown
@@ -40,7 +40,7 @@ export default function Page() {
4040

4141
## Extract Type info from Typescript code
4242

43-
Vite-pages allows can help you to extract Typescript type info and render it. With this feature, you **no loger need to manually maintain API infomation in your documents**! You can reuse your interfaces (and comments in them) from your source code! This is very conveniently for API documentation.
43+
Vite-pages can help you to extract Typescript type info and render it. With this feature, you **no longer need to manually maintain API information in your documents**! You can reuse your interfaces (and comments in them) from your source code! This is very convenient for API documentation.
4444

4545
### Render Interface
4646

@@ -58,7 +58,7 @@ will result in:
5858

5959
### Render Type Alias
6060

61-
Besides interface, TsInfo API also support type alias.
61+
Besides interfaces, TsInfo API also supports type aliases.
6262

6363
SomeObjectLiteralType (Object Literal):
6464
<TsInfo src="./types.ts" name="SomeObjectLiteralType" />
@@ -68,7 +68,7 @@ SomeComplexType (Complex Type):
6868

6969
### Using TsInfo API in JS files
7070

71-
In jsx page, You can import and render tsInfo like this:
71+
In a JSX page, You can import and render tsInfo like this:
7272

7373
```tsx
7474
import tsInfoData from './types.ts?tsInfo=ButtonProps'
@@ -81,7 +81,7 @@ export default function Page() {
8181

8282
## Render text from files
8383

84-
You can also render text from any files. So that these files can be both "code" and "documentation".
84+
You can also render text from any file. So that these files can be both "code" and "documentation".
8585

8686
The following markdown
8787

@@ -93,7 +93,7 @@ will result in:
9393

9494
<FileText src="./types.ts" syntax="ts" />
9595

96-
In jsx page, You can render file text like this:
96+
In a JSX page, You can render file text like this:
9797

9898
```tsx
9999
// https://vitejs.dev/guide/assets.html#importing-asset-as-string
@@ -107,4 +107,4 @@ export default function Page() {
107107

108108
## Examples
109109

110-
You can checkout [template-lib](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/src/Button/README.md) as an example. (You can [view it online](https://stackblitz.com/fork/github/vitejs/vite-plugin-react-pages/tree/main/packages/create-project/template-lib?file=src%2FButton%2FREADME.md&terminal=dev) or [init this project locally](https://vitejs.github.io/vite-plugin-react-pages/))
110+
You can check out [template-lib](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/src/Button/README.md) as an example. (You can [view it online](https://stackblitz.com/fork/github/vitejs/vite-plugin-react-pages/tree/main/packages/create-project/template-lib?file=src%2FButton%2FREADME.md&terminal=dev) or [init this project locally](https://vitejs.github.io/vite-plugin-react-pages/))

‎doc-site/pages/magic-import$_deprecate.mdx

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ order: 4
55

66
# Magic import
77

8-
Vite-pages support "magic import". Magic import is **normal esModule import sytax** with **tailored path convention**. It enable users to import things with special behavior. Users can use it to do powerful things.
8+
Vite-pages support "magic import". Magic import is **normal esModule import syntax** with **tailored path convention**. It enables users to import things with special behavior. Users can use it to do powerful things.
99

10-
> If you are familiar with the webpack loader mechanism, you can easily guess how magic import works.
10+
> If you are familiar with the Webpack loader mechanism, you can easily guess how magic import works.
1111
1212
## Analyze source code
1313

14-
When you are documenting for some JavaScript/Typescript library, you normally want to show some js/ts code to readers. This magic import help you load source code from a module. It is kind of like [raw-loader from webpack](https://webpack.js.org/loaders/raw-loader/). This is very useful for demo code displaying.
14+
When you are documenting for some JavaScript/Typescript library, you normally want to show some js/ts code to readers. This magic import helps you load source code from a module. It is kind of like [raw-loader from webpack](https://webpack.js.org/loaders/raw-loader/). This is very useful for demo code displaying.
1515

16-
You can get the module tree analysis by importing the module with query `?analyzeSource`.
16+
You can get the module tree analysis by importing the module with the query `?analyzeSource`.
1717

1818
For example:
1919

@@ -48,15 +48,15 @@ Checkout the [analyze-source-code fixture](https://github.com/vitejs/vite-plugin
4848

4949
### Relative module dependencies
5050

51-
For relative module dependencies(.e.g `import util from './dir/util.ts'`), their source code will be collected into the analyze result, as shown by the previous example.
51+
For relative module dependencies(.e.g `import util from './dir/util.ts'`), their source code will be collected into the analysis result, as shown by the previous example.
5252

5353
Relative module import can be js, jsx, ts, tsx, css, sass, etc.
5454

5555
### External module dependencies
5656

5757
For those dependencies from `node_modules` (.e.g `import React from 'react'`), this magic import will **not** load source code for them. Instead, the dependencies' versions are recorded, as shown by the previous example.
5858

59-
This magic import gets dependencies' versions by find `package.json` up from the importer, and find the package version from these `package.json` fields:
59+
This magic import gets dependencies' versions by finding a `package.json` up from the importer, and finds the package version from these `package.json` fields:
6060

6161
- `peerDependencies`
6262
- `devDependencies`

‎doc-site/pages/official-theme$.mdx

+8-8
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default createTheme({
2929

3030
## Auto side menu generation
3131

32-
Doc theme can generation a side menu automatically, based on the pages information.
32+
Doc theme can generate a side menu automatically, based on the pages information.
3333

3434
You can control the title/sorting/grouping of the side menu, by notating these [page static data](/page-data#static-data):
3535

@@ -55,7 +55,7 @@ For example, if your site has these pages:
5555
/references/error-codes/code2
5656
```
5757

58-
Firstly, the theme will divide pages into `group`s based on the **first segment** of page path:
58+
Firstly, the theme will divide pages into `group`s based on the **first segment** of the page path:
5959

6060
```
6161
group /:
@@ -78,11 +78,11 @@ group references:
7878
You can customize `group` in page static data. For example:
7979

8080
```
81-
Put this at top of a markdown page:
81+
Put this at the top of a markdown page:
8282
---
8383
group: references
8484
---
85-
Or put this at top of a tsx/jsx page:
85+
Or put this at the top of a TSX/JSX page:
8686
/**
8787
* @group references
8888
*/
@@ -115,10 +115,10 @@ group references:
115115

116116
`subGroup` can also be customized in page static data, just like `group` does.
117117

118-
What is the meanings of `group` and `subGroup`?
118+
What is the meaning of `group` and `subGroup`?
119119

120-
- `group` is a site isolation boundary: we only display **one** `group` at a time. If a user open a page in group `references`, he/she will **only see side menu items from that group**. He/She will not see menu items from `components` group.
121-
- `subGroup` decide how the theme sort side menu items. All side menu items with same `subGroup` will be rendered adjacently. This document site is an example.
120+
- `group` is a site isolation boundary: we only display **one** `group` at a time. If a user opens a page in the group `references`, he/she will **only see side menu items from that group**. He/She will not see menu items from `components` group.
121+
- `subGroup` decides how the theme sorts the side menu items. All side menu items with the same `subGroup` will be rendered adjacently. This document site is an example.
122122

123123
## Theme configs
124124

@@ -128,6 +128,6 @@ The `createTheme` exported by `vite-pages-theme-doc` accepts [these options](htt
128128

129129
## Fully theme customization
130130

131-
If the basic theme doesn't satisfy your need, you can [create your own theme](/theme-customization).
131+
If the basic theme doesn't satisfy your needs, you can [create your own theme](/theme-customization).
132132

133133
> Contributions to [the theme](https://github.com/vitejs/vite-plugin-react-pages/tree/main/packages/theme-doc) are always welcomed.

‎doc-site/pages/page-data$.mdx

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ order: 2
55

66
# Page data
77

8-
**Essentially, vite-pages is a React app framework that collect your pages data and pass them to your theme.** So what kinds of data does it collect?
8+
**Essentially, vite-pages is a React app framework that collects your pages' data and passes them to your theme.** So what kinds of data does it collect?
99

1010
Each page consists of two kinds of data:
1111

@@ -18,7 +18,7 @@ Both of these page data are passed to the theme so that it can render the app.
1818
1919
## Static data
2020

21-
Static data usually contains the matadata of a page. Static data of **all pages** is loaded **eagerly** when the app bootstrap, so that the theme can render a side menu or a search box with this infomation.
21+
Static data usually contains the metadata of a page. Static data of **all pages** is loaded **eagerly** when the app bootstraps, so that the theme can render a side menu or a search box with this information.
2222

2323
> You should try to keep the static data as small as possible.
2424
@@ -60,7 +60,7 @@ This will be collected as:
6060

6161
Runtime page data is whatever value you export from a page file. It contains the actual content of the page.
6262

63-
Most themes(.e.g [the official theme](/official-theme)) ask users to `export default` a React component from each page file. But that is not a requirement from vite-pages core. We will talk about this later.
63+
Most themes(e.g. [the official theme](/official-theme)) ask users to `export default` a React component from each page file. But that is not a requirement from vite-pages core. We will talk about this later.
6464

6565
## Difference
6666

@@ -69,7 +69,7 @@ Both static data and runtime data are passed to the theme, so the theme can use
6969
Difference:
7070

7171
- Static data of **all pages** is loaded **eagerly** when the app bootstrap. So you should try to keep the static data small.
72-
- Runtime data is loaded **lazily** when user navigate to that page.
72+
- Runtime data is loaded **lazily** when a user navigates to that page.
7373
- The value type of static data is limited (string or simple object/array), while the value of runtime data can be any javascript value (.e.g a React component).
7474

7575
## How themes consume these data
@@ -88,9 +88,9 @@ Here is the interface of a theme:
8888
8989
## Vite-pages core doesn't care what your page data looks like
9090

91-
Vite-pages itself doesn't care what the page data looks like. How to interpret the page data and render the view, is totally decided by [the theme](/theme-customization). Vite-pages just collect your pages data and pass them to the theme. This design make the vite-pages core more "simple" and make themes more powerful.
91+
Vite-pages itself doesn't care what the page data looks like. How to interpret the page data and render the view, is totally decided by [the theme](/theme-customization). Vite-pages just collect your pages' data and pass them to the theme. This design makes the vite-pages core more "simple" and makes themes more powerful.
9292

93-
Most themes(.e.g [the official theme](/official-theme)) ask users to `export default` a React component from each page file. But that is not a requirement from vite-pages core.
93+
Most themes(e.g. [the official theme](/official-theme)) ask users to `export default` a React component from each page file. But that is not a requirement from vite-pages core.
9494

9595
## Advanced topic: how vite-pages represent page data internally
9696

@@ -115,10 +115,10 @@ interface PagesData {
115115

116116
### Composed page data
117117

118-
You may wonder why runtimeData and staticData are maps and we use a `key` to index into them (instead of just one data for a page). This is because **vite-pages let users create a page with multiple data pieces that originate from multiple files.**
118+
You may wonder why runtimeData and staticData are maps and we use a `key` to index into them (instead of just one data for a page). This is because **vite-pages lets users create a page with multiple data pieces that originate from multiple files.**
119119

120120
> We use this feature in [the project scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts). We use it to display demos from multiple files in one page. You can init this sample project [with one command](/) (choose `lib` template).
121121
122-
Most filesystem routing mechanism out there assume that each page map to only one file. But vite-pages doesn't enforce that rule! This make page data more flexible and programable.
122+
Most filesystem routing mechanisms out there assume that each page maps to only one file. But vite-pages doesn't enforce that rule! This makes page data more flexible and programable.
123123

124124
Checkout [the advanced-fs-routing doc](/advanced-fs-routing) or ["Example: develop a component library"](/examples/component-library) to learn more about how to create a page with multiple data pieces that originate from multiple files.

‎doc-site/pages/theme-customization$.mdx

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ subGroup: advanced
66

77
# Theme customization
88

9-
> This is an advance guide about how to make a theme by yourself. If there is already themes that meet your needs(.e.g [the official theme](/official-theme)), you don't need to read this guide now!
9+
> This is an advanced guide about how to make a theme by yourself. If there are already themes that meet your needs(e.g. [the official theme](/official-theme)), you don't need to read this guide now!
1010
11-
Vite-pages itself doesn't render any concrete DOM node. Users can customize **anything** with a theme. That's why theme is so powerful.
11+
Vite-pages itself doesn't render any concrete DOM node. Users can customize **anything** with a theme. That's why themes are so powerful.
1212

13-
To use a theme, users should export their theme from `_theme.tsx`. It should export a React compoent. It will be rendered by vite-pages core, and get useful info from props:
13+
To use a theme, users should export their theme from `_theme.tsx`. It should export a React component. It will be rendered by vite-pages core, and get useful info from props:
1414

1515
- All pages' static data
1616
- All runtime data that is already loaded
@@ -28,15 +28,15 @@ This is probably [the simplest theme](https://github.com/vitejs/vite-plugin-reac
2828

2929
> Here is a more useful theme: [vite-pages-theme-doc](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/theme-doc/src/index.tsx). Learn more about it in [this guide](/official-theme).
3030
31-
You can customize every bits of UI with theme. Welcome to share your theme with a npm package!
31+
You can customize every bit of UI with a theme. Welcome to share your theme with a npm package!
3232

3333
## Suggestions
3434

3535
### To theme providers: make your theme easier to use
3636

37-
We encourage theme providers to export your theme as **a config function** that receive user config and return a `Theme`.
37+
We encourage theme providers to export your theme as **a config function** that receives the user config and returns a `Theme`.
3838

39-
For example, the theme provider can export theme like this:
39+
For example, the theme provider can export a theme like this:
4040

4141
```tsx
4242
// The theme config function accepts navs config
@@ -76,13 +76,13 @@ export default createTheme({
7676

7777
As you can see, the theme is easier to use because **theme consumers don't need to know about the `Theme` API of vite-pages**. They only need to know about `createTheme` API from the theme. Users should be talking to the theme, instead of talking directly to vite-pages framework.
7878

79-
For this reason, we encourage theme providers to export config function like the `createTheme` above.
79+
For this reason, we encourage theme providers to export a config function like the `createTheme` above.
8080

8181
> You can refer to [vite-pages-theme-doc](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/theme-doc/src/index.tsx)
8282
8383
#### Release the power of Typescript
8484

85-
The above example show another benefit for users: theme users can get Typescript type-check and intelliSense when they are configuring theme. This is because users are calling the theme config function, instead of "exporting some configs".
85+
The above example shows another benefit for users: theme users can get Typescript type-check and intelliSense when they are configuring a theme. This is because users are calling the theme config function, instead of "exporting some configs".
8686

8787
## Share your theme!
8888

‎doc-site/pages/upgrade-from-v2-to-v3$.mdx

+10-10
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ Upgrade these package versions:
2222
}
2323
```
2424

25-
Notice that you need to [migrate your app to vite v3](https://vitejs.dev/guide/migration.html) with this setup.
25+
Notice that you need to [migrate your app to Vite v3](https://vitejs.dev/guide/migration.html) with this setup.
2626

2727
It is very recommended to migrate `vite-pages-theme-basic` to [vite-pages-theme-doc](/official-theme).
2828

29-
### Stick with vite v2
29+
### Stick with Vite v2
3030

31-
If you are not ready for vite v3 for some reason, you can stick with vite v2:
31+
If you are not ready for Vite v3 for some reason, you can stick with Vite v2:
3232

3333
```json
3434
{
@@ -42,13 +42,13 @@ If you are not ready for vite v3 for some reason, you can stick with vite v2:
4242
}
4343
```
4444

45-
Notice the version of `@vitejs/plugin-react` need to be changed together with `vite`.
45+
Notice the version of `@vitejs/plugin-react` needs to be changed together with `vite`.
4646

47-
We also recommend you to migrate `vite-pages-theme-basic` to [vite-pages-theme-doc](/official-theme) with this setup (with vite v2).
47+
We also recommend you migrate `vite-pages-theme-basic` to [vite-pages-theme-doc](/official-theme) with this setup (with Vite v2).
4848

49-
## Install peerDependencies for mdx
49+
## Install peerDependencies for MDX
5050

51-
`vite-plugin-mdx` no longer install mdx-related peerDependencies for you. You should install them in your project:
51+
`vite-plugin-mdx` no longer installs mdx-related peerDependencies for you. You should install them in your project:
5252

5353
```json
5454
{
@@ -59,13 +59,13 @@ We also recommend you to migrate `vite-pages-theme-basic` to [vite-pages-theme-d
5959
}
6060
```
6161

62-
> [vite-plugin-mdx](https://github.com/brillout/vite-plugin-mdx) has been moved to a seperate repo. ([related issue](https://github.com/vitejs/vite-plugin-react-pages/issues/6))
62+
> [vite-plugin-mdx](https://github.com/brillout/vite-plugin-mdx) has been moved to a separate repo. ([related issue](https://github.com/vitejs/vite-plugin-react-pages/issues/6))
6363
6464
## A Small update to theme API
6565

6666
> **If you have only used the basic theme and haven't created a custom theme. You don't need to care about this API change.**
6767
68-
In `vite-plugin-react-pages@3.x`, vite-pages don't pass staticData to the theme component any more. You should use the hook `useStaticData` to get staticData. This API update is for less prop drilling and more efficient HMR update during dev.
68+
In `vite-plugin-react-pages@3.x`, vite-pages don't pass staticData to the theme component anymore. You should use the hook `useStaticData` to get staticData. This API update is for less prop drilling and more efficient HMR update during dev.
6969

7070
```ts
7171
interface ThemeProps {
@@ -95,4 +95,4 @@ In `vite-plugin-react-pages@3.x`, vite-pages use chokidar to scan the fileSystem
9595

9696
> Thanks [Alec Larson](https://github.com/aleclarson) for the idea and initial implementation.
9797
98-
In order to handle the change from from the fileSystem, the "Advanced Filesystem Routing" API has changed from the `findPages` API to the `pageStrategy` API. Checkout [the advanced-fs-routing doc](/advanced-fs-routing) to learn about the latest API.
98+
In order to handle the change from the fileSystem, the "Advanced Filesystem Routing" API has changed from the `findPages` API to the `pageStrategy` API. Checkout [the advanced-fs-routing doc](/advanced-fs-routing) to learn about the latest API.

‎doc-site/pages/upgrade-from-v3-to-v4$.mdx

+15-15
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ subGroup: upgrade-guides
66

77
# Upgrade from v3 to v4
88

9-
vite-pages v4 is released with following improvements:
9+
vite-pages v4 is released with the following improvements:
1010

1111
- Support [Vite v4](https://vitejs.dev/guide/migration.html).
1212
- Upgrade React to [18.x](https://reactjs.org/blog/2022/03/08/react-18-upgrade-guide.html).
1313
- Upgrade react-router to [6.x](https://reactrouter.com/en/main/upgrading/v5).
1414
- Upgrade mdx to [2.x](https://mdxjs.com/migrating/v2/).
1515
- Upgrade antd to [5.x](https://ant.design/docs/react/migration-v5) (for vite-pages-theme-doc).
1616
- Support [Node.js ECMAScript modules](https://nodejs.org/api/esm.html).
17-
- Support markdown outline (table of content).
17+
- Support markdown outline (table of contents).
1818
- Support search.
1919

2020
![outline-and-search](./_assets/outline-and-search.jpg)
2121

22-
The following article will show you the migrate instructions. If you encounter problems, open an issue in the repo. Or checkout the [getting-stated templates](https://vitejs.github.io/vite-plugin-react-pages/#getting-stated) for reference.
22+
The following article will show you the migration instructions. If you encounter problems, open an issue in the repo. Or check out the [getting-stated templates](https://vitejs.github.io/vite-plugin-react-pages/#getting-stated) for reference.
2323

2424
## Upstream libraries migration
2525

26-
Most upgrade work for upstream libraries is already done inside `vite-plugin-react-pages` and `vite-pages-theme-doc`. But some migration need to be done in userland, if you are using some old APIs that are dropped by these upstream libraries. For example, you can no longer use `<Switch>` of `react-router`. Checkout the links above for the migration guides of upstream libraries.
26+
Most upgrade work for upstream libraries is already done inside `vite-plugin-react-pages` and `vite-pages-theme-doc`. But some of the migration needs to be done in userland, if you are using some old APIs that are dropped by these upstream libraries. For example, you can no longer use `<Switch>` of `react-router`. Check out the links above for the migration guides of upstream libraries.
2727

28-
We expect upstream libraries migration to be very easy for framwork users, unless you used many `react-router` v5-only APIs.
28+
We expect upstream libraries migration to be very easy for framework users unless you used many `react-router` v5-only APIs.
2929

3030
## Remove vite-plugin-mdx
3131

32-
Since `vite-plugin-mdx` doesn't support mdx v2, vite-pages now includes a builtin mdx plugin. So you should remove the `vite-plugin-mdx` in vite-pages v5.
32+
Since `vite-plugin-mdx` doesn't support mdx v2, vite-pages now includes a built-in MDX plugin. So you should remove the `vite-plugin-mdx` in vite-pages v5.
3333

3434
Update `vite.config.ts`:
3535

@@ -48,12 +48,12 @@ export default defineConfig({
4848
})
4949
```
5050

51-
Notice that `pages()` now return an array of vite plugins(instead of return a plugin). But vite can understand that and apply every plugin in that array. So the invoke pattern of `vite-plugin-react-pages` looks exactly the same as before! You don't need to apply the new builtin mdx plugin manually.
51+
Notice that `pages()` now returns an array of Vite plugins(instead of returning a plugin). But Vite can understand that and apply every plugin in that array. So the invoke pattern of `vite-plugin-react-pages` looks exactly the same as before! You don't need to apply the new built-in MDX plugin manually.
5252

5353
Update `package.json`:
5454

5555
- Remove `vite-plugin-mdx` and `@mdx-js/mdx`.
56-
- You should upgrade `@mdx-js/react` to `^2.1.5`. It is a peerDependencies of mdx, so it should be installed by your vite project.
56+
- You should upgrade `@mdx-js/react` to `^2.1.5`. It is a peerDependencies of mdx, so it should be installed by your Vite project.
5757

5858
```diff
5959
{
@@ -68,19 +68,19 @@ Update `package.json`:
6868

6969
## MDX Comment Syntax Change
7070

71-
mdx v2 drops support for HTML comment syntax `<!-- html comment -->` (actually it drops all HTML syntax), and [the document](https://mdxjs.com/docs/what-is-mdx/#markdown) recommends using jsx comment syntax instead:
71+
MDX v2 drops support for HTML comment syntax `<!-- html comment -->` (actually it drops all HTML syntax), and [the document](https://mdxjs.com/docs/what-is-mdx/#markdown) recommends using JSX comment syntax instead:
7272
> HTML syntax doesn’t work in MDX as it’s replaced by JSX. Instead of HTML comments, you can use JavaScript comments in braces: `{/* comment! */}`.
7373
74-
The author explain the reason behind this at [this rfc](https://github.com/mdx-js/mdx/issues/1042#issuecomment-622281752). The author hopes that the mdx syntax is only composed of markdown syntax + JSX syntax. The introduction of HTML syntax is not necessary and it would increase the mental burden.
74+
The author explains the reason behind this at [this rfc](https://github.com/mdx-js/mdx/issues/1042#issuecomment-622281752). The author hopes that the MDX syntax is only composed of markdown syntax + JSX syntax. The introduction of HTML syntax is not necessary and it would increase the mental burden.
7575

76-
> Although many markdown parsers support HTML syntax, it is technically not the syntax of markdown itself. Those markdown parsers support it because markdown was not expressive enough in the past (without mdx). mdx has already solved the lack of expressiveness (via JSX syntax), so there is no need to support HTML syntax.
76+
> Although many markdown parsers support HTML syntax, it is technically not the syntax of markdown itself. Those markdown parsers support it because markdown was not expressive enough in the past (without MDX). MDX has already solved the lack of expressiveness (via JSX syntax), so there is no need to support HTML syntax.
7777
78-
The removing of html comment syntax does bring some migration costs. You can quickly migrate it by regular search and replacement: `<!--(.*?)-->` replace to `{/*$0*/}`.
78+
The removal of HTML comment syntax does bring some migration costs. You can quickly migrate it by regular search and replacement: `<!--(.*?)-->` replace to `{/*$0*/}`.
7979

8080
## Use Node.js ECMAScript modules
8181

82-
The Node.js community is quickly migrating from CommonJS to ECMAScript modules (esm). And we encourage you to run vite on the esm mode of Node.js.
82+
The Node.js community is quickly migrating from CommonJS to ECMAScript modules (esm). And we encourage you to run Vite on the esm mode of Node.js.
8383

84-
How to enable esm for Node.js? Just add a `"type": "module"` field to the `package.json` of your vite project!
84+
How to enable ESM for Node.js? Just add a `"type": "module"` field to the `package.json` of your Vite project!
8585

86-
> It is encouraged to have a dedicated `package.json` for your vite project. Your vite project should not share a `package.json` with the npm package that you are publishing (or the worspace package in the project root directory, if you are using monorepo).
86+
> It is encouraged to have a dedicated `package.json` for your Vite project. Your Vite project should not share a `package.json` with the npm package that you are publishing (or the workspace package in the project root directory, if you are using monorepo).

‎doc-site/pages/upgrade-from-v4-to-v5$.mdx

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ subGroup: upgrade-guides
66

77
# Upgrade from v4 to v5
88

9-
vite-plugin-react-pages v5 is released with following improvements:
9+
vite-plugin-react-pages v5 is released with the following improvements:
1010

11-
- Upgrade vite to [v5](https://vitejs.dev/guide/migration.html).
12-
- Upgrade mdx to [v3](https://mdxjs.com/migrating/v3/).
11+
- Upgrade Vite to [v5](https://vitejs.dev/guide/migration.html).
12+
- Upgrade MDX to [v3](https://mdxjs.com/migrating/v3/).
1313

14-
Most migration is done inside this plugin. And our upstream libraries (vite and mdx) did't bring many significant breaking changes. So it should be **very easy** for our users to migrate! The following article will show you the migrate instructions.
14+
Most migration is done inside this plugin. Our upstream libraries (Vite and MDX) didn't bring many significant breaking changes. So it should be **very easy** for our users to migrate! The following article will show you the migration instructions.
1515

16-
If you encounter problems, open an issue in the repo. Or checkout the [getting-stated templates](https://vitejs.github.io/vite-plugin-react-pages/#getting-stated) for working setup.
16+
If you encounter problems, open an issue in the repo. Or check out the [getting-stated templates](https://vitejs.github.io/vite-plugin-react-pages/#getting-stated) for working setup.
1717

1818
## Upgrade Node.js to 18+
1919

20-
As [vite v5](https://vitejs.dev/guide/migration.html) required, you should upgrade Node.js to 18+.
20+
As [Vite v5](https://vitejs.dev/guide/migration.html) requires Node.js 18+, you should upgrade Node.js to 18+.
2121

2222
## Upgrade project dependencies
2323

@@ -39,7 +39,7 @@ Upgrade these package versions:
3939
4040
## Check Upstream libraries migration
4141

42-
Most migration is done inside this plugin. Although the upstream libraries (vite and mdx) did't bring many significant breaking changes for you, you should still take a look on their migration guides:
42+
Most migration is done inside this plugin. Although the upstream libraries (Vite and MDX) didn't bring many significant breaking changes for you, you should still take a look at their migration guides:
4343

44-
- [vite v5](https://vitejs.dev/guide/migration.html)
45-
- [mdx v3](https://mdxjs.com/migrating/v3/)
44+
- [Vite v5](https://vitejs.dev/guide/migration.html)
45+
- [MDX v3](https://mdxjs.com/migrating/v3/)

0 commit comments

Comments
 (0)
Please sign in to comment.