Skip to content

Commit 33a59cd

Browse files
authored
docs: update links (#523)
* docs: update links * docs: fix 3xx urls * chore: fix typo
1 parent 779b789 commit 33a59cd

File tree

24 files changed

+69
-74
lines changed

24 files changed

+69
-74
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "\U0001F41E Bug report"
22
description: Create a report to help us improve
3-
labels: ["bug: pending triage"]
3+
labels: ['bug: pending triage']
44
body:
55
- type: markdown
66
attributes:
@@ -52,9 +52,9 @@ body:
5252
label: Validations
5353
description: Before submitting the issue, please make sure you do the following
5454
options:
55-
- label: Follow our [Code of Conduct](https://vuejs.org/coc)
55+
- label: Follow our [Code of Conduct](https://vuejs.org/about/coc.html)
5656
required: true
57-
- label: Read the [docs](https://vitepress.vuejs.org/).
57+
- label: Read the [docs](https://vitepress.vuejs.org).
5858
required: true
5959
- label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
6060
required: true

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ body:
3535
label: Validations
3636
description: Before submitting the issue, please make sure you do the following
3737
options:
38-
- label: Follow our [Code of Conduct](https://vuejs.org/coc)
38+
- label: Follow our [Code of Conduct](https://vuejs.org/about/coc.html)
3939
required: true
40-
- label: Read the [docs](https://vitepress.vuejs.org/).
40+
- label: Read the [docs](https://vitepress.vuejs.org).
4141
required: true
42-
- label: Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/master/.github/contributing.md).
42+
- label: Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).
4343
required: true
44-
- label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
44+
- label: Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.
4545
required: true

.github/commit-convention.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Messages must be matched by the following regex:
88

9-
``` js
9+
```js
1010
/^(revert: )?(feat|fix|docs|dx|style|refactor|perf|test|workflow|build|ci|chore|types|wip)(\(.+\))?: .{1,50}/
1111
```
1212

@@ -44,7 +44,7 @@ This reverts commit 667ecc1654a317a13331b17617d973392f415f02.
4444

4545
### Full Message Format
4646

47-
A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
47+
A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
4848

4949
```
5050
<type>(<scope>): <subject>
@@ -74,9 +74,9 @@ The scope could be anything specifying the place of the commit change. For examp
7474

7575
The subject contains a succinct description of the change:
7676

77-
* use the imperative, present tense: "change" not "changed" nor "changes"
78-
* don't capitalize the first letter
79-
* no dot (.) at the end
77+
- use the imperative, present tense: "change" not "changed" nor "changes"
78+
- don't capitalize the first letter
79+
- no dot (.) at the end
8080

8181
### Body
8282

.github/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ Hi! We're really excited that you are interested in contributing to VitePress. B
1919

2020
- It's OK to have multiple small commits as you work on the PR - GitHub can automatically squash them before merging.
2121

22-
- Commit messages must follow the [commit message convention](./commit-convention.md) so that changelogs can be automatically generated.
22+
- Commit messages must follow the [commit message convention](./commit-convention) so that changelogs can be automatically generated.
2323

2424
## Development Setup
2525

26-
You will need [pnpm](https://pnpm.io/)
26+
You will need [pnpm](https://pnpm.io)
2727

2828
After cloning the repo, run:
2929

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/setup-node@v2
2222
with:
2323
node-version: ${{ matrix.node_version }}
24-
cache: "pnpm"
24+
cache: 'pnpm'
2525

2626
- name: Install deps
2727
run: pnpm install

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55

66
---
77

8-
VitePress is [VuePress](http://vuepress.vuejs.org/)' spiritual successor, built on top of [vite](https://github.com/vuejs/vite).
8+
VitePress is [VuePress](https://vuepress.vuejs.org)' spiritual successor, built on top of [vite](https://github.com/vitejs/vite).
99

1010
## Documentation
1111

1212
To check out docs, visit [vitepress.vuejs.org](https://vitepress.vuejs.org).
1313

1414
## Changelog
1515

16-
Detailed changes for each release are documented in the [CHANGELOG](https://github.com/vuejs/vitepress/blob/master/CHANGELOG.md).
16+
Detailed changes for each release are documented in the [CHANGELOG](./CHANGELOG).
1717

1818
## Contribution
1919

20-
Please make sure to read the [Contributing Guide](./.github/contributing.md) before making a pull request.
20+
Please make sure to read the [Contributing Guide](./.github/contributing) before making a pull request.
2121

2222
## License
2323

24-
[MIT](https://opensource.org/licenses/MIT)
24+
[MIT](./LICENSE)
2525

2626
Copyright (c) 2019-present, Yuxi (Evan) You
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<template>
22
<span>&#x26A1;</span>
3-
</template>
3+
</template>

docs/config/algolia-search.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Theme Config: Algolia Search
22

3-
The `themeConfig.algolia` option allows you to use [Algolia DocSearch](https://docsearch.algolia.com/). To enable it, you need to provide at least apiKey and indexName:
3+
The `themeConfig.algolia` option allows you to use [Algolia DocSearch](https://docsearch.algolia.com). To enable it, you need to provide at least apiKey and indexName:
44

55
```js
66
module.exports = {
@@ -13,7 +13,7 @@ module.exports = {
1313
}
1414
```
1515

16-
For more options, check out [Algolia DocSearch's documentation](https://docsearch.algolia.com/docs/behavior). You can pass any extra option alongside other options, e.g. passing `searchParameters`:
16+
For more options, check out [Algolia DocSearch's documentation](https://docsearch.algolia.com/docs/api/). You can pass any extra option alongside other options, e.g. passing `searchParameters`:
1717

1818
```js
1919
module.exports = {

docs/config/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# App Config: Basics
22

33
::: tip
4-
The config reference is incomplete since the config format may still receive further changes. For a complete reference of the current available options, refer to [config.ts](https://github.com/vuejs/vitepress/blob/master/src/node/config.ts#L15).
4+
The config reference is incomplete since the config format may still receive further changes. For a complete reference of the current available options, refer to [config.ts](https://github.com/vuejs/vitepress/blob/45b65ce8b63bd54f345bfc3383eb2416b6769dc9/src/node/config.ts#L30-L65).
55
:::
66

77
## base

docs/config/homepage.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ features:
2020
details: VitePress generates pre-rendered static HTML for each page, and runs as an SPA once a page is loaded.
2121
footer: MIT Licensed | Copyright © 2019-present Evan You
2222
---
23-
2423
```

0 commit comments

Comments
 (0)