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
Copy file name to clipboardexpand all lines: packages/docs/docs/guide/deploy.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The following guides are based on some shared assumptions:
20
20
21
21
If you are deploying to `https://<USERNAME>.github.io/`, you can omit `base` as it defaults to `"/"`.
22
22
23
-
If you are deploying to `https://<USERNAME>.github.io/<REPO>/`, e.g. your repository is at `https://github.com/<USERNAME>/<REPO>`, then set `base` to `"/<REPO>/"`.
23
+
If you are deploying to `https://<USERNAME>.github.io/<REPO>/`, for example your repository is at `https://github.com/<USERNAME>/<REPO>`, then set `base` to `"/<REPO>/"`.
24
24
25
25
2. Inside your project, create `deploy.sh` with the following content (with highlighted lines uncommented appropriately), and run it to deploy:
26
26
@@ -62,11 +62,11 @@ You can also run the above script in your CI setup to enable automatic deploymen
62
62
63
63
If you are deploying to `https://<USERNAME or GROUP>.github.io/`, you can omit `base` as it defaults to `"/"`.
64
64
65
-
If you are deploying to `https://<USERNAME or GROUP>.github.io/<REPO>/`, e.g. your repository is at `https://github.com/<USERNAME>/<REPO>`, then set `base` to `"/<REPO>/"`.
65
+
If you are deploying to `https://<USERNAME or GROUP>.github.io/<REPO>/`, for example your repository is at `https://github.com/<USERNAME>/<REPO>`, then set `base` to `"/<REPO>/"`.
66
66
67
67
2. Create a file named `.travis.yml` in the root of your project.
68
68
69
-
3. Run `yarn` or `npm install` locally and commit the generated lockfile (i.e.`yarn.lock` or `package-lock.json`).
69
+
3. Run `yarn` or `npm install` locally and commit the generated lockfile (that is`yarn.lock` or `package-lock.json`).
70
70
71
71
4. Use the GitHub Pages deploy provider template, and follow the [Travis CI documentation](https://docs.travis-ci.com/user/deployment/pages/).
72
72
@@ -94,7 +94,7 @@ deploy:
94
94
95
95
If you are deploying to `https://<USERNAME or GROUP>.gitlab.io/`, you can omit `base` as it defaults to `"/"`.
96
96
97
-
If you are deploying to `https://<USERNAME or GROUP>.gitlab.io/<REPO>/`, e.g. your repository is at `https://gitlab.com/<USERNAME>/<REPO>`, then set `base` to `"/<REPO>/"`.
97
+
If you are deploying to `https://<USERNAME or GROUP>.gitlab.io/<REPO>/`, for example your repository is at `https://gitlab.com/<USERNAME>/<REPO>`, then set `base` to `"/<REPO>/"`.
98
98
99
99
2. Set `dest` in `.vuepress/config.js` to `public`.
Copy file name to clipboardexpand all lines: packages/docs/docs/guide/markdown.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -159,7 +159,7 @@ This is a dangerous warning
159
159
:::
160
160
161
161
::: details
162
-
This is a details block, which does not work in IE / Edge
162
+
This is a details block, which does not work in That is / Edge
163
163
:::
164
164
165
165
### Custom Title
@@ -277,9 +277,9 @@ export default {
277
277
278
278
In addition to a single line, you can also specify multiple single lines, ranges, or both:
279
279
280
-
- Line ranges: e.g.`{5-8}`, `{3-10}`, `{10-17}`
281
-
- Multiple single lines: e.g.`{4,7,9}`
282
-
- Line ranges and single lines: e.g.`{4,7-13,16,23-27,40}`
280
+
- Line ranges: for example`{5-8}`, `{3-10}`, `{10-17}`
281
+
- Multiple single lines: for example`{4,7,9}`
282
+
- Line ranges and single lines: for example`{4,7-13,16,23-27,40}`
283
283
284
284
**Input**
285
285
@@ -391,7 +391,7 @@ It also supports [line highlighting](#line-highlighting-in-code-blocks):
391
391
Since the import of the code snippets will be executed before webpack compilation, you can’t use the path alias in webpack. The default value of `@` is `process.cwd()`.
392
392
:::
393
393
394
-
You can also use a [VS Code region](https://code.visualstudio.com/docs/editor/codebasics#_folding)in order to only include the corresponding part of the code file. You can provide a custom region name after a `#` following the filepath (`snippet` by default):
394
+
You can also use a [VS Code region](https://code.visualstudio.com/docs/editor/codebasics#_folding) to only include the corresponding part of the code file. You can provide a custom region name after a `#` following the filepath (`snippet` by default):
Copy file name to clipboardexpand all lines: packages/docs/docs/plugin/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Here is also a little slightly complicated plugin example [@vuepress/plugin-blog
15
15
16
16
## Out of the Box
17
17
18
-
To keep things at a minimum, not all of the official plugins are shipped with VuePress. Here is the list of plugins that are pre-installed in the VuePress and the default theme, **plugins that are not in the list below need to be installed manually**(e.g.[@vuepress/plugin-back-to-top](./official/plugin-back-to-top.md)).
18
+
To keep things at a minimum, not all of the official plugins are shipped with VuePress. Here is the list of plugins that are pre-installed in the VuePress and the default theme, **plugins that are not in the list below need to be installed manually**(for example[@vuepress/plugin-back-to-top](./official/plugin-back-to-top.md)).
0 commit comments