@dengzhibo/vitepress-example 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vitepress/cache/deps/_metadata.json +32 -0
- package/.vitepress/cache/deps/package.json +3 -0
- package/.vitepress/cache/deps/vitepress_n_@vue_devtools-api.js +3808 -0
- package/.vitepress/cache/deps/vitepress_n_@vue_devtools-api.js.map +1 -0
- package/.vitepress/cache/deps/vitepress_n_@vueuse_core.js +10171 -0
- package/.vitepress/cache/deps/vitepress_n_@vueuse_core.js.map +1 -0
- package/.vitepress/cache/deps/vue.js +2 -0
- package/.vitepress/cache/deps/vue.runtime.esm-bundler-D-XhGYqL.js +8856 -0
- package/.vitepress/cache/deps/vue.runtime.esm-bundler-D-XhGYqL.js.map +1 -0
- package/.vitepress/config.ts +28 -0
- package/.vitepress/theme/index.ts +17 -0
- package/.vitepress/theme/style.css +131 -0
- package/README.md +57 -0
- package/api-examples.md +49 -0
- package/index.md +25 -0
- package/markdown-examples.md +85 -0
- package/package.json +30 -0
- package/scripts/run-typedoc.mjs +25 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { defineConfig } from 'vitepress'
|
|
2
|
+
|
|
3
|
+
// https://vitepress.dev/reference/site-config
|
|
4
|
+
export default defineConfig({
|
|
5
|
+
title: "My Awesome Project",
|
|
6
|
+
description: "A VitePress Site",
|
|
7
|
+
themeConfig: {
|
|
8
|
+
// https://vitepress.dev/reference/default-theme-config
|
|
9
|
+
nav: [
|
|
10
|
+
{ text: 'Home', link: '/' },
|
|
11
|
+
{ text: 'Examples', link: '/markdown-examples' }
|
|
12
|
+
],
|
|
13
|
+
|
|
14
|
+
sidebar: [
|
|
15
|
+
{
|
|
16
|
+
text: 'Examples',
|
|
17
|
+
items: [
|
|
18
|
+
{ text: 'Markdown Examples', link: '/markdown-examples' },
|
|
19
|
+
{ text: 'Runtime API Examples', link: '/api-examples' }
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
|
|
24
|
+
socialLinks: [
|
|
25
|
+
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
})
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// https://vitepress.dev/guide/custom-theme
|
|
2
|
+
import { h } from 'vue'
|
|
3
|
+
import type { Theme } from 'vitepress'
|
|
4
|
+
import DefaultTheme from 'vitepress/theme'
|
|
5
|
+
import './style.css'
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
extends: DefaultTheme,
|
|
9
|
+
Layout: () => {
|
|
10
|
+
return h(DefaultTheme.Layout, null, {
|
|
11
|
+
// https://vitepress.dev/guide/extending-default-theme#layout-slots
|
|
12
|
+
})
|
|
13
|
+
},
|
|
14
|
+
enhanceApp({ app, router, siteData }) {
|
|
15
|
+
// ...
|
|
16
|
+
}
|
|
17
|
+
} satisfies Theme
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Customize default theme styling by overriding CSS variables:
|
|
3
|
+
* https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Colors
|
|
8
|
+
*
|
|
9
|
+
* Each colors have exact same color scale system with 3 levels of solid
|
|
10
|
+
* colors with different brightness, and 1 soft color.
|
|
11
|
+
*
|
|
12
|
+
* - `XXX-1`: The most solid color used mainly for colored text. It must
|
|
13
|
+
* satisfy the contrast ratio against when used on top of `XXX-soft`.
|
|
14
|
+
*
|
|
15
|
+
* - `XXX-2`: The color used mainly for hover state of the button.
|
|
16
|
+
*
|
|
17
|
+
* - `XXX-3`: The color for solid background, such as bg color of the button.
|
|
18
|
+
* It must satisfy the contrast ratio with pure white (#ffffff) text on
|
|
19
|
+
* top of it.
|
|
20
|
+
*
|
|
21
|
+
* - `XXX-soft`: The color used for subtle background such as custom container
|
|
22
|
+
* or badges. It must satisfy the contrast ratio when putting `XXX-1` colors
|
|
23
|
+
* on top of it.
|
|
24
|
+
*
|
|
25
|
+
* The soft color must be semi transparent alpha channel. This is crucial
|
|
26
|
+
* because it allows adding multiple "soft" colors on top of each other
|
|
27
|
+
* to create an accent, such as when having inline code block inside
|
|
28
|
+
* custom containers.
|
|
29
|
+
*
|
|
30
|
+
* - `default`: The color used purely for subtle indication without any
|
|
31
|
+
* special meanings attached to it such as bg color for menu hover state.
|
|
32
|
+
*
|
|
33
|
+
* - `brand`: Used for primary brand colors, such as link text, button with
|
|
34
|
+
* brand theme, etc.
|
|
35
|
+
*
|
|
36
|
+
* - `tip`: Used to indicate useful information. The default theme uses the
|
|
37
|
+
* brand color for this by default.
|
|
38
|
+
*
|
|
39
|
+
* - `warning`: Used to indicate warning to the users. Used in custom
|
|
40
|
+
* container, badges, etc.
|
|
41
|
+
*
|
|
42
|
+
* - `danger`: Used to show error, or dangerous message to the users. Used
|
|
43
|
+
* in custom container, badges, etc.
|
|
44
|
+
* -------------------------------------------------------------------------- */
|
|
45
|
+
|
|
46
|
+
:root {
|
|
47
|
+
--vp-c-default-1: var(--vp-c-gray-1);
|
|
48
|
+
--vp-c-default-2: var(--vp-c-gray-2);
|
|
49
|
+
--vp-c-default-3: var(--vp-c-gray-3);
|
|
50
|
+
--vp-c-default-soft: var(--vp-c-gray-soft);
|
|
51
|
+
|
|
52
|
+
--vp-c-brand-1: var(--vp-c-indigo-1);
|
|
53
|
+
--vp-c-brand-2: var(--vp-c-indigo-2);
|
|
54
|
+
--vp-c-brand-3: var(--vp-c-indigo-3);
|
|
55
|
+
--vp-c-brand-soft: var(--vp-c-indigo-soft);
|
|
56
|
+
|
|
57
|
+
--vp-c-tip-1: var(--vp-c-brand-1);
|
|
58
|
+
--vp-c-tip-2: var(--vp-c-brand-2);
|
|
59
|
+
--vp-c-tip-3: var(--vp-c-brand-3);
|
|
60
|
+
--vp-c-tip-soft: var(--vp-c-brand-soft);
|
|
61
|
+
|
|
62
|
+
--vp-c-warning-1: var(--vp-c-yellow-1);
|
|
63
|
+
--vp-c-warning-2: var(--vp-c-yellow-2);
|
|
64
|
+
--vp-c-warning-3: var(--vp-c-yellow-3);
|
|
65
|
+
--vp-c-warning-soft: var(--vp-c-yellow-soft);
|
|
66
|
+
|
|
67
|
+
--vp-c-danger-1: var(--vp-c-red-1);
|
|
68
|
+
--vp-c-danger-2: var(--vp-c-red-2);
|
|
69
|
+
--vp-c-danger-3: var(--vp-c-red-3);
|
|
70
|
+
--vp-c-danger-soft: var(--vp-c-red-soft);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Component: Button
|
|
75
|
+
* -------------------------------------------------------------------------- */
|
|
76
|
+
|
|
77
|
+
:root {
|
|
78
|
+
--vp-button-brand-border: transparent;
|
|
79
|
+
--vp-button-brand-text: var(--vp-c-white);
|
|
80
|
+
--vp-button-brand-bg: var(--vp-c-brand-3);
|
|
81
|
+
--vp-button-brand-hover-border: transparent;
|
|
82
|
+
--vp-button-brand-hover-text: var(--vp-c-white);
|
|
83
|
+
--vp-button-brand-hover-bg: var(--vp-c-brand-2);
|
|
84
|
+
--vp-button-brand-active-border: transparent;
|
|
85
|
+
--vp-button-brand-active-text: var(--vp-c-white);
|
|
86
|
+
--vp-button-brand-active-bg: var(--vp-c-brand-1);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Component: Home
|
|
91
|
+
* -------------------------------------------------------------------------- */
|
|
92
|
+
|
|
93
|
+
:root {
|
|
94
|
+
--vp-home-hero-name-color: transparent;
|
|
95
|
+
--vp-home-hero-name-background: -webkit-linear-gradient(
|
|
96
|
+
120deg,
|
|
97
|
+
#bd34fe 30%,
|
|
98
|
+
#41d1ff
|
|
99
|
+
);
|
|
100
|
+
|
|
101
|
+
--vp-home-hero-image-background-image: linear-gradient(
|
|
102
|
+
-45deg,
|
|
103
|
+
#bd34fe 50%,
|
|
104
|
+
#47caff 50%
|
|
105
|
+
);
|
|
106
|
+
--vp-home-hero-image-filter: blur(44px);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
@media (min-width: 40rem) {
|
|
110
|
+
:root {
|
|
111
|
+
--vp-home-hero-image-filter: blur(56px);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
@media (min-width: 60rem) {
|
|
116
|
+
:root {
|
|
117
|
+
--vp-home-hero-image-filter: blur(68px);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Component: Custom Block
|
|
123
|
+
* -------------------------------------------------------------------------- */
|
|
124
|
+
|
|
125
|
+
:root {
|
|
126
|
+
--vp-custom-block-tip-border: transparent;
|
|
127
|
+
--vp-custom-block-tip-text: var(--vp-c-text-1);
|
|
128
|
+
--vp-custom-block-tip-bg: var(--vp-c-brand-soft);
|
|
129
|
+
--vp-custom-block-tip-code-bg: var(--vp-c-brand-soft);
|
|
130
|
+
}
|
|
131
|
+
|
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# VitePress 脚手架搭建
|
|
2
|
+
|
|
3
|
+
## 基础
|
|
4
|
+
|
|
5
|
+
安装命令
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm init
|
|
9
|
+
pnpm add -D vitepress@next
|
|
10
|
+
pnpm vitepress init
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
脚本命令
|
|
14
|
+
|
|
15
|
+
```js
|
|
16
|
+
"scripts": {
|
|
17
|
+
// 启动本地开发服务器,带热更新。
|
|
18
|
+
// 运行后打开浏览器就能实时预览文档,改代码页面会自动刷新。
|
|
19
|
+
"dev": "vitepress dev",
|
|
20
|
+
|
|
21
|
+
// 构建生产版本。
|
|
22
|
+
// 把 Markdown 和 Vue 组件编译成静态 HTML/CSS/JS,输出到 dist 目录,用于部署上线。
|
|
23
|
+
"build": "vitepress build",
|
|
24
|
+
|
|
25
|
+
// 本地预览构建后的产物。
|
|
26
|
+
// 先跑 build 生成静态文件,再用这个命令起一个本地服务器,模拟线上环境查看效果。
|
|
27
|
+
"preview": "vitepress preview",
|
|
28
|
+
|
|
29
|
+
// 安装依赖前的强制检查。
|
|
30
|
+
// preinstall 是 npm 的生命周期钩子,在执行 install 前自动运行。
|
|
31
|
+
// only-allow pnpm 强制要求必须用 pnpm 安装依赖,防止有人用 npm/yarn 导致依赖树不一致。
|
|
32
|
+
"preinstall": "npx only-allow pnpm",
|
|
33
|
+
|
|
34
|
+
// 类型检查。
|
|
35
|
+
// 用 vue-tsc 对 Vue 组件和 TypeScript 代码做静态类型检查,--noEmit 表示只检查不生成文件。
|
|
36
|
+
// 通常用于 CI 流程,提前发现类型错误。
|
|
37
|
+
"typecheck": "vue-tsc --noEmit",
|
|
38
|
+
|
|
39
|
+
// 生成 API 文档。
|
|
40
|
+
// 运行 run-typedoc.mjs 脚本,大概率是用 TypeDoc 根据源码里的注释自动生成 API 文档。
|
|
41
|
+
// 注意这里用的是 node 直接执行,而不是 pnpm/npm。
|
|
42
|
+
"api": "node run-typedoc.mjs",
|
|
43
|
+
|
|
44
|
+
// 以下三条是文档翻译相关的命令。
|
|
45
|
+
// v-translation 应该是项目自定义的 CLI 工具,用于管理多语言文档。
|
|
46
|
+
|
|
47
|
+
// 对比翻译文件,找出源文档和译文之间的差异(比如源文档更新了但译文没跟上的地方)。
|
|
48
|
+
"translation:compare": "v-translation compare",
|
|
49
|
+
|
|
50
|
+
// 根据源文档的变更,自动更新翻译文件。
|
|
51
|
+
"translation:update": "v-translation update",
|
|
52
|
+
|
|
53
|
+
// 查看当前翻译的整体进度和状态(哪些语言完成度高,哪些还没翻译)。
|
|
54
|
+
"translation:status": "v-translation status"
|
|
55
|
+
}
|
|
56
|
+
```
|
|
57
|
+
|
package/api-examples.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
outline: deep
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Runtime API Examples
|
|
6
|
+
|
|
7
|
+
This page demonstrates usage of some of the runtime APIs provided by VitePress.
|
|
8
|
+
|
|
9
|
+
The main `useData()` API can be used to access site, theme, and page data for the current page. It works in both `.md` and `.vue` files:
|
|
10
|
+
|
|
11
|
+
```md
|
|
12
|
+
<script setup>
|
|
13
|
+
import { useData } from 'vitepress'
|
|
14
|
+
|
|
15
|
+
const { theme, page, frontmatter } = useData()
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
## Results
|
|
19
|
+
|
|
20
|
+
### Theme Data
|
|
21
|
+
<pre>{{ theme }}</pre>
|
|
22
|
+
|
|
23
|
+
### Page Data
|
|
24
|
+
<pre>{{ page }}</pre>
|
|
25
|
+
|
|
26
|
+
### Page Frontmatter
|
|
27
|
+
<pre>{{ frontmatter }}</pre>
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
<script setup>
|
|
31
|
+
import { useData } from 'vitepress'
|
|
32
|
+
|
|
33
|
+
const { site, theme, page, frontmatter } = useData()
|
|
34
|
+
</script>
|
|
35
|
+
|
|
36
|
+
## Results
|
|
37
|
+
|
|
38
|
+
### Theme Data
|
|
39
|
+
<pre>{{ theme }}</pre>
|
|
40
|
+
|
|
41
|
+
### Page Data
|
|
42
|
+
<pre>{{ page }}</pre>
|
|
43
|
+
|
|
44
|
+
### Page Frontmatter
|
|
45
|
+
<pre>{{ frontmatter }}</pre>
|
|
46
|
+
|
|
47
|
+
## More
|
|
48
|
+
|
|
49
|
+
Check out the documentation for the [full list of runtime APIs](https://vitepress.dev/reference/runtime-api#usedata).
|
package/index.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
# https://vitepress.dev/reference/default-theme-home-page
|
|
3
|
+
layout: home
|
|
4
|
+
|
|
5
|
+
hero:
|
|
6
|
+
name: "My Awesome Project"
|
|
7
|
+
text: "A VitePress Site"
|
|
8
|
+
tagline: My great project tagline
|
|
9
|
+
actions:
|
|
10
|
+
- theme: brand
|
|
11
|
+
text: Markdown Examples
|
|
12
|
+
link: /markdown-examples
|
|
13
|
+
- theme: alt
|
|
14
|
+
text: API Examples
|
|
15
|
+
link: /api-examples
|
|
16
|
+
|
|
17
|
+
features:
|
|
18
|
+
- title: Feature A
|
|
19
|
+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
20
|
+
- title: Feature B
|
|
21
|
+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
22
|
+
- title: Feature C
|
|
23
|
+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
24
|
+
---
|
|
25
|
+
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# Markdown Extension Examples
|
|
2
|
+
|
|
3
|
+
This page demonstrates some of the built-in markdown extensions provided by VitePress.
|
|
4
|
+
|
|
5
|
+
## Syntax Highlighting
|
|
6
|
+
|
|
7
|
+
VitePress provides Syntax Highlighting powered by [Shiki](https://github.com/shikijs/shiki), with additional features like line-highlighting:
|
|
8
|
+
|
|
9
|
+
**Input**
|
|
10
|
+
|
|
11
|
+
````md
|
|
12
|
+
```js{4}
|
|
13
|
+
export default {
|
|
14
|
+
data () {
|
|
15
|
+
return {
|
|
16
|
+
msg: 'Highlighted!'
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
````
|
|
22
|
+
|
|
23
|
+
**Output**
|
|
24
|
+
|
|
25
|
+
```js{4}
|
|
26
|
+
export default {
|
|
27
|
+
data () {
|
|
28
|
+
return {
|
|
29
|
+
msg: 'Highlighted!'
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Custom Containers
|
|
36
|
+
|
|
37
|
+
**Input**
|
|
38
|
+
|
|
39
|
+
```md
|
|
40
|
+
::: info
|
|
41
|
+
This is an info box.
|
|
42
|
+
:::
|
|
43
|
+
|
|
44
|
+
::: tip
|
|
45
|
+
This is a tip.
|
|
46
|
+
:::
|
|
47
|
+
|
|
48
|
+
::: warning
|
|
49
|
+
This is a warning.
|
|
50
|
+
:::
|
|
51
|
+
|
|
52
|
+
::: danger
|
|
53
|
+
This is a dangerous warning.
|
|
54
|
+
:::
|
|
55
|
+
|
|
56
|
+
::: details
|
|
57
|
+
This is a details block.
|
|
58
|
+
:::
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**Output**
|
|
62
|
+
|
|
63
|
+
::: info
|
|
64
|
+
This is an info box.
|
|
65
|
+
:::
|
|
66
|
+
|
|
67
|
+
::: tip
|
|
68
|
+
This is a tip.
|
|
69
|
+
:::
|
|
70
|
+
|
|
71
|
+
::: warning
|
|
72
|
+
This is a warning.
|
|
73
|
+
:::
|
|
74
|
+
|
|
75
|
+
::: danger
|
|
76
|
+
This is a dangerous warning.
|
|
77
|
+
:::
|
|
78
|
+
|
|
79
|
+
::: details
|
|
80
|
+
This is a details block.
|
|
81
|
+
:::
|
|
82
|
+
|
|
83
|
+
## More
|
|
84
|
+
|
|
85
|
+
Check out the documentation for the [full list of markdown extensions](https://vitepress.dev/guide/markdown).
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dengzhibo/vitepress-example",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [],
|
|
7
|
+
"author": "",
|
|
8
|
+
"license": "ISC",
|
|
9
|
+
"devEngines": {
|
|
10
|
+
"packageManager": {
|
|
11
|
+
"name": "pnpm",
|
|
12
|
+
"version": "^11.22.0",
|
|
13
|
+
"onFail": "download"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"vitepress": "2.0.0-alpha.20"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vitepress dev",
|
|
21
|
+
"build": "vitepress build",
|
|
22
|
+
"preview": "vitepress preview",
|
|
23
|
+
"preinstall": "npx only-allow pnpm",
|
|
24
|
+
"typecheck": "vue-tsc --noEmit",
|
|
25
|
+
"api": "node scripts/run-typedoc.mjs",
|
|
26
|
+
"translation:compare": "v-translation compare",
|
|
27
|
+
"translation:update": "v-translation update",
|
|
28
|
+
"translation:status": "v-translation status"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import path from 'node:path'
|
|
2
|
+
import { createTypeDocApp } from './typedoc-markdown.mjs'
|
|
3
|
+
|
|
4
|
+
const __dirname = path.dirname(new URL(import.meta.url).pathname)
|
|
5
|
+
|
|
6
|
+
createTypeDocApp({
|
|
7
|
+
textContentMappings: {
|
|
8
|
+
'title.indexPage': 'API Reference',
|
|
9
|
+
'title.memberPage': '{name}',
|
|
10
|
+
},
|
|
11
|
+
tsconfig: path.resolve(__dirname, './typedoc.tsconfig.json'),
|
|
12
|
+
// entryPointStrategy: 'packages',
|
|
13
|
+
categorizeByGroup: true,
|
|
14
|
+
githubPages: false,
|
|
15
|
+
readme: 'none',
|
|
16
|
+
indexFormat: 'table',
|
|
17
|
+
disableSources: true,
|
|
18
|
+
plugin: ['typedoc-plugin-markdown', 'typedoc-vitepress-theme'],
|
|
19
|
+
useCodeBlocks: true,
|
|
20
|
+
entryPoints: [
|
|
21
|
+
path.resolve(__dirname, '../pinia/src/index.ts'),
|
|
22
|
+
path.resolve(__dirname, '../testing/src/index.ts'),
|
|
23
|
+
path.resolve(__dirname, '../nuxt/src/module.ts'),
|
|
24
|
+
],
|
|
25
|
+
}).then((app) => app.build())
|