/pages/**/*.vue'
22 | ],
23 | testEnvironment: 'jsdom'
24 | }
25 |
--------------------------------------------------------------------------------
/pages/plugins/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/pages/themes/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | version: 2
2 | updates:
3 | # Fetch and update latest `npm` packages
4 | - package-ecosystem: npm
5 | directory: '/'
6 | schedule:
7 | interval: daily
8 | time: '00:00'
9 | open-pull-requests-limit: 10
10 | reviewers:
11 | - z3by
12 | assignees:
13 | - z3by
14 | commit-message:
15 | prefix: fix
16 | prefix-development: chore
17 | include: scope
18 | # Fetch and update latest `github-actions` pkgs
19 | - package-ecosystem: github-actions
20 | directory: '/'
21 | schedule:
22 | interval: daily
23 | time: '00:00'
24 | open-pull-requests-limit: 10
25 | reviewers:
26 | - z3by
27 | assignees:
28 | - z3by
29 | commit-message:
30 | prefix: fix
31 | prefix-development: chore
32 | include: scope
33 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2018",
4 | "module": "ESNext",
5 | "moduleResolution": "Node",
6 | "lib": [
7 | "ESNext",
8 | "ESNext.AsyncIterable",
9 | "DOM"
10 | ],
11 | "esModuleInterop": true,
12 | "allowJs": true,
13 | "sourceMap": true,
14 | "strict": true,
15 | "noEmit": true,
16 | "experimentalDecorators": true,
17 | "baseUrl": ".",
18 | "paths": {
19 | "~/*": [
20 | "./*"
21 | ],
22 | "@/*": [
23 | "./*"
24 | ]
25 | },
26 | "types": [
27 | "@nuxt/types",
28 | "@nuxtjs/axios",
29 | "@nuxt/content",
30 | "@types/node"
31 | ]
32 | },
33 | "exclude": [
34 | "node_modules",
35 | ".nuxt",
36 | "dist"
37 | ]
38 | }
39 |
--------------------------------------------------------------------------------
/.github/workflows/cd.yml:
--------------------------------------------------------------------------------
1 | name: cd
2 |
3 | on:
4 | push:
5 | branches:
6 | - master
7 |
8 | jobs:
9 | cd:
10 | runs-on: ${{ matrix.os }}
11 |
12 | strategy:
13 | matrix:
14 | os: [ubuntu-latest]
15 | node: [14]
16 |
17 | steps:
18 | - name: Checkout
19 | uses: actions/checkout@v3
20 |
21 | - name: Setup node env
22 | uses: actions/setup-node@v3.5.1
23 | with:
24 | node-version: ${{ matrix.node }}
25 |
26 | - name: Install dependencies
27 | run: yarn
28 |
29 | - name: Generate
30 | run: yarn run generate
31 |
32 | - name: Deploy
33 | uses: peaceiris/actions-gh-pages@v3
34 | with:
35 | github_token: ${{ secrets.GITHUB_TOKEN }}
36 | publish_dir: ./dist
37 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-sumsc.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: wzhzzmzzy
6 | url: null
7 | username: null
8 | bugs: null
9 | category: themes
10 | date: '2019-06-04T13:09:09.378Z'
11 | deprecated: false
12 | description: this is a vuepress theme
13 | downloads: null
14 | homepage: https://github.com/sumsc/vuepress-theme-reco#readme
15 | keywords:
16 | - vuepress
17 | - vue
18 | - theme
19 | license: null
20 | maintainers: null
21 | name: vuepress-theme-sumsc
22 | npm: https://www.npmjs.com/package/vuepress-theme-sumsc
23 | publisher:
24 | avatar: null
25 | email: wzhzzmzzy@gmail.com
26 | name: null
27 | url: null
28 | username: wzhzzmzzy
29 | repository: https://github.com/sumsc/vuepress-theme-reco
30 | score: 0.14956420985463276
31 | stars: 0
32 | unstable: true
33 | version: 0.0.1
34 | watchers: 0
35 |
36 | ---
37 |
38 |
--------------------------------------------------------------------------------
/layouts/error.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {{ pageNotFound }}
5 |
6 |
7 | {{ otherError }}
8 |
9 |
10 | Home page
11 |
12 |
13 |
14 |
15 |
39 |
40 |
45 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-bbtalk.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: pikasama@qq.com
5 | name: Zorin
6 | url: null
7 | username: zolyn
8 | bugs: https://github.com/Zolyn/vuepress-plugin-bbtalk/issues
9 | category: plugins
10 | date: '2021-05-19T15:12:48.460Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/Zolyn/vuepress-plugin-bbtalk#readme
15 | keywords: null
16 | license: null
17 | maintainers: null
18 | name: vuepress-plugin-bbtalk
19 | npm: https://www.npmjs.com/package/vuepress-plugin-bbtalk
20 | publisher:
21 | avatar: null
22 | email: pikasama@qq.com
23 | name: null
24 | url: null
25 | username: zolyn
26 | repository: https://github.com/Zolyn/vuepress-plugin-bbtalk
27 | score: 0.2955168712550429
28 | stars: 0
29 | unstable: true
30 | version: 1.0.0-alpha.1
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-lomo.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: creanme@live.com
5 | name: creanme
6 | url: null
7 | username: creanme
8 | bugs: https://github.com/creanme/vuepress-theme-lomo/issues
9 | category: themes
10 | date: '2020-03-08T07:24:35.427Z'
11 | deprecated: false
12 | description: a vuepress blog theme
13 | downloads: null
14 | homepage: https://github.com/creanme/vuepress-theme-lomo#readme
15 | keywords: null
16 | license: null
17 | maintainers: null
18 | name: vuepress-theme-lomo
19 | npm: https://www.npmjs.com/package/vuepress-theme-lomo
20 | publisher:
21 | avatar: null
22 | email: creanme@live.com
23 | name: null
24 | url: null
25 | username: creanme
26 | repository: https://github.com/creanme/vuepress-theme-lomo
27 | score: 0.3818216751580783
28 | stars: 0
29 | unstable: false
30 | version: 1.0.9
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@zolyn-vuepress-plugin-waline.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: Zorin
6 | url: null
7 | username: null
8 | bugs: https://github.com/Zolyn/vuepress-plugin-waline/issues
9 | category: plugins
10 | date: '2021-05-22T12:00:19.287Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/Zolyn/vuepress-plugin-waline#readme
15 | keywords: null
16 | license: null
17 | maintainers: null
18 | name: '@zolyn/vuepress-plugin-waline'
19 | npm: https://www.npmjs.com/package/%40zolyn%2Fvuepress-plugin-waline
20 | publisher:
21 | avatar: null
22 | email: pikasama@qq.com
23 | name: null
24 | url: null
25 | username: zolyn
26 | repository: https://github.com/Zolyn/vuepress-plugin-waline
27 | score: 0.4687072432571193
28 | stars: 0
29 | unstable: false
30 | version: 1.1.1
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-ads.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: Evan You
6 | url: null
7 | username: null
8 | bugs: https://github.com/kitdocs/vuepress-theme-ads/issues
9 | category: themes
10 | date: '2018-04-30T05:51:33.189Z'
11 | deprecated: false
12 | description: VuePress theme for official Vue projects
13 | downloads: null
14 | homepage: https://github.com/kitdocs/vuepress-theme-ads#readme
15 | keywords:
16 | - vue
17 | license: null
18 | maintainers: null
19 | name: vuepress-theme-ads
20 | npm: https://www.npmjs.com/package/vuepress-theme-ads
21 | publisher:
22 | avatar: null
23 | email: 1395093509@qq.com
24 | name: null
25 | url: null
26 | username: cloudyan
27 | repository: https://github.com/kitdocs/vuepress-theme-ads
28 | score: 0.14931962804772092
29 | stars: 0
30 | unstable: true
31 | version: 0.0.1
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-multi.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/13756745?v=4
4 | email: null
5 | name: dmate
6 | url: null
7 | username: cfharyadi
8 | bugs: https://github.com/cfharyadi/vuepress-theme-multi/issues
9 | category: themes
10 | date: '2018-05-26T12:54:54.239Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/cfharyadi/vuepress-theme-multi#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-multi
19 | npm: https://www.npmjs.com/package/vuepress-theme-multi
20 | publisher:
21 | avatar: null
22 | email: cfharyadi@gmail.com
23 | name: null
24 | url: null
25 | username: dmate
26 | repository: https://github.com/cfharyadi/vuepress-theme-multi
27 | score: 0.4017889769420885
28 | stars: 0
29 | unstable: false
30 | version: 1.0.6
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/assets/main.scss:
--------------------------------------------------------------------------------
1 | .gradient {
2 | background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab, teal);
3 | background-size: 400% 400%;
4 | animation: gradient-background 20s ease infinite;
5 | }
6 | .text-gradient {
7 | background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab, teal);
8 | background-size: 400% 400%;
9 | background-clip: text;
10 | -webkit-text-fill-color: transparent;
11 | animation: gradient-background 20s ease infinite;
12 | }
13 | @-webkit-keyframes gradient-background {
14 | 0% {
15 | background-position: 0 50%;
16 | }
17 | 50% {
18 | background-position: 100% 50%;
19 | }
20 | to {
21 | background-position: 0 50%;
22 | }
23 | }
24 | @keyframes gradient-background {
25 | 0% {
26 | background-position: 0 50%;
27 | }
28 | 50% {
29 | background-position: 100% 50%;
30 | }
31 | to {
32 | background-position: 0 50%;
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-learner.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: Dylan Wu
6 | url: null
7 | username: null
8 | bugs: https://github.com/dylan-wu/vuepress-theme-learner/issues
9 | category: themes
10 | date: '2019-02-27T17:46:42.173Z'
11 | deprecated: false
12 | description: Vuepress theme - Learner
13 | downloads: null
14 | homepage: https://github.com/dylan-wu/vuepress-theme-learner
15 | keywords:
16 | - vuepress
17 | - theme
18 | license: null
19 | maintainers: null
20 | name: vuepress-theme-learner
21 | npm: https://www.npmjs.com/package/vuepress-theme-learner
22 | publisher:
23 | avatar: null
24 | email: dylanwu@live.com
25 | name: null
26 | url: null
27 | username: dylan_wu
28 | repository: https://github.com/dylan-wu/vuepress-theme-learner
29 | score: 0.14950731740161444
30 | stars: 0
31 | unstable: true
32 | version: 1.0.0-alpha-1
33 | watchers: 0
34 |
35 | ---
36 |
37 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-mdc.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/24715727?v=4
4 | email: null
5 | name: ocavue
6 | url: null
7 | username: ocavue
8 | bugs: https://github.com/ocavue/vuepress-theme-mdc/issues
9 | category: themes
10 | date: '2018-06-19T12:01:43.800Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/ocavue/vuepress-theme-mdc#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-theme-mdc
19 | npm: https://www.npmjs.com/package/vuepress-theme-mdc
20 | publisher:
21 | avatar: null
22 | email: ocavue@gmail.com
23 | name: null
24 | url: null
25 | username: ocavue
26 | repository: https://github.com/ocavue/vuepress-theme-mdc
27 | score: 0.1500619520064138
28 | stars: 1
29 | unstable: true
30 | version: 0.0.1-d
31 | watchers: 1
32 |
33 | ---
34 |
35 | # vuepress-theme-mdc
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-adv.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: Vitor Carvalho
6 | url: null
7 | username: null
8 | bugs: https://github.com/vcml10/vuepress-theme-adv/issues
9 | category: themes
10 | date: '2019-01-12T20:20:36.444Z'
11 | deprecated: false
12 | description: Simple theme for VuePress
13 | downloads: null
14 | homepage: https://github.com/vcml10/vuepress-theme-adv#readme
15 | keywords:
16 | - static-site
17 | - blog
18 | - vue
19 | - vuepress
20 | license: null
21 | maintainers: null
22 | name: vuepress-theme-adv
23 | npm: https://www.npmjs.com/package/vuepress-theme-adv
24 | publisher:
25 | avatar: null
26 | email: vitorcarvalhoml@gmail.com
27 | name: null
28 | url: null
29 | username: vcml10
30 | repository: https://github.com/vcml10/vuepress-theme-adv
31 | score: 0.2993886397764798
32 | stars: 0
33 | unstable: true
34 | version: 0.0.1
35 | watchers: 0
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-blog.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/1251825?v=4
4 | email: me@ycmjason.com
5 | name: Jason Yu
6 | url: null
7 | username: ycm.jason
8 | bugs: https://github.com/ycmjason/vuepress-theme-blog/issues
9 | category: themes
10 | date: '2018-04-22T12:08:31.753Z'
11 | deprecated: false
12 | description: WIP
13 | downloads: null
14 | homepage: https://github.com/ycmjason/vuepress-theme-blog#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-blog
19 | npm: https://www.npmjs.com/package/vuepress-theme-blog
20 | publisher:
21 | avatar: null
22 | email: me@ycmjason.com
23 | name: null
24 | url: null
25 | username: ycm.jason
26 | repository: https://github.com/ycmjason/vuepress-theme-blog
27 | score: 0.38821213590633286
28 | stars: 0
29 | unstable: true
30 | version: 0.0.1
31 | watchers: 0
32 |
33 | ---
34 |
35 | WIP
36 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-xenon.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: genemators@gmail.com
5 | name: Genemator
6 | url: null
7 | username: genemator
8 | bugs: https://github.com/xinuxuz/xenon/issues
9 | category: themes
10 | date: '2021-03-11T12:51:06.100Z'
11 | deprecated: false
12 | description: Xinux jamiyati websayti uchun yaratilgan shaxsiy website dizayn moduli
13 | downloads: null
14 | homepage: https://github.com/xinuxuz/xenon#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | license: null
19 | maintainers: null
20 | name: vuepress-theme-xenon
21 | npm: https://www.npmjs.com/package/vuepress-theme-xenon
22 | publisher:
23 | avatar: null
24 | email: genemators@gmail.com
25 | name: null
26 | url: null
27 | username: genemator
28 | repository: https://github.com/xinuxuz/xenon
29 | score: 0.4666788331745788
30 | stars: 0
31 | unstable: false
32 | version: 2.4.7
33 | watchers: 0
34 |
35 | ---
36 |
37 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-peyton.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/18347659?v=4
4 | email: null
5 | name: peyton
6 | url: null
7 | username: BigPengZai
8 | bugs: https://github.com/BigPengZai/vuepress-theme-peyton/issues
9 | category: themes
10 | date: '2022-03-14T07:13:07.465Z'
11 | deprecated: false
12 | description: theme-peyton
13 | downloads: null
14 | homepage: https://github.com/BigPengZai/vuepress-theme-peyton
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-peyton
19 | npm: https://www.npmjs.com/package/vuepress-theme-peyton
20 | publisher:
21 | avatar: null
22 | email: peytonpeng1990@163.com
23 | name: null
24 | url: null
25 | username: peytonpeng
26 | repository: https://github.com/BigPengZai/vuepress-theme-peyton
27 | score: 0.49047114905511296
28 | stars: 1
29 | unstable: false
30 | version: 1.0.2
31 | watchers: 1
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-landing.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: focuxin
6 | url: null
7 | username: null
8 | bugs: https://github.com/focuxin/vuepress-theme-landing/issues
9 | category: themes
10 | date: '2021-12-16T11:41:57.691Z'
11 | deprecated: false
12 | description: VuePress theme for landing page.
13 | downloads: null
14 | homepage: https://github.com/focuxin/vuepress-theme-landing#readme
15 | keywords:
16 | - documentation
17 | - vuepress
18 | - landing
19 | license: null
20 | maintainers: null
21 | name: vuepress-theme-landing
22 | npm: https://www.npmjs.com/package/vuepress-theme-landing
23 | publisher:
24 | avatar: null
25 | email: focuxin@163.com
26 | name: null
27 | url: null
28 | username: focuxin
29 | repository: https://github.com/focuxin/vuepress-theme-landing
30 | score: 0.4894888519330146
31 | stars: 0
32 | unstable: false
33 | version: 1.0.2
34 | watchers: 0
35 |
36 | ---
37 |
38 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-travis.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12029165?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: im
8 | bugs: https://github.com/im/vuepress-theme-travis/issues
9 | category: themes
10 | date: '2019-07-26T08:42:54.340Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/im/vuepress-theme-travis#readme
15 | keywords:
16 | - vuepress
17 | license: false
18 | maintainers: null
19 | name: vuepress-theme-travis
20 | npm: https://www.npmjs.com/package/vuepress-theme-travis
21 | publisher:
22 | avatar: null
23 | email: tangxiaomiemail@gmail.com
24 | name: null
25 | url: null
26 | username: tangxiaomi
27 | repository: https://github.com/im/vuepress-theme-travis
28 | score: 0.3713942341704037
29 | stars: 0
30 | unstable: false
31 | version: 1.1.2
32 | watchers: 0
33 |
34 | ---
35 |
36 | # vuepress-theme-travis
37 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-kytest.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12093502?v=4
4 | email: kybetter@163.com
5 | name: zhaoliang
6 | url: null
7 | username: kybetter
8 | bugs: https://github.com/kybetter/vuepress-theme-kytest/issues
9 | category: themes
10 | date: '2019-04-28T06:08:28.236Z'
11 | deprecated: false
12 | description: vuepress-theme-kytest
13 | downloads: null
14 | homepage: https://github.com/kybetter/vuepress-theme-kytest#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-kytest
19 | npm: https://www.npmjs.com/package/vuepress-theme-kytest
20 | publisher:
21 | avatar: null
22 | email: kybetter@163.com
23 | name: null
24 | url: null
25 | username: kybetter
26 | repository: https://github.com/kybetter/vuepress-theme-kytest
27 | score: 0.4253209782468089
28 | stars: 0
29 | unstable: false
30 | version: 1.0.0
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-isonaj.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/10228573?v=4
4 | email: isonaj@gmail.com
5 | name: Anthony Ison
6 | url: null
7 | username: isonaj
8 | bugs: https://github.com/isonaj/vuepress-theme-isonaj/issues
9 | category: themes
10 | date: '2019-12-24T05:10:07.155Z'
11 | deprecated: false
12 | description: Casper-like Theme for VuePress
13 | downloads: null
14 | homepage: https://github.com/isonaj/vuepress-theme-isonaj#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-isonaj
19 | npm: https://www.npmjs.com/package/vuepress-theme-isonaj
20 | publisher:
21 | avatar: null
22 | email: isonaj@gmail.com
23 | name: null
24 | url: null
25 | username: isonaj
26 | repository: https://github.com/isonaj/vuepress-theme-isonaj
27 | score: 0.23698334606957938
28 | stars: 0
29 | unstable: true
30 | version: 0.0.22
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-element-ui.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liyang.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo946666
8 | bugs: null
9 | category: plugins
10 | date: '2021-04-23T23:31:44.836Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-element-ui'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-element-ui
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.10670317416484254
28 | stars: 0
29 | unstable: false
30 | version: 1.0.1-alpha.0
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@zolyn-vuepress-plugin-typescript.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: zorin1477@gmail.com
5 | name: Zorin
6 | url: null
7 | username: null
8 | bugs: https://github.com/Zolyn/vuepress-plugin-typescript/issues
9 | category: plugins
10 | date: '2021-06-06T06:51:06.224Z'
11 | deprecated: false
12 | description: A fork of vuepress-plugin-typescript
13 | downloads: null
14 | homepage: https://github.com/Zolyn/vuepress-plugin-typescript#readme
15 | keywords: null
16 | license: null
17 | maintainers: null
18 | name: '@zolyn/vuepress-plugin-typescript'
19 | npm: https://www.npmjs.com/package/%40zolyn%2Fvuepress-plugin-typescript
20 | publisher:
21 | avatar: null
22 | email: pikasama@qq.com
23 | name: null
24 | url: null
25 | username: zolyn
26 | repository: https://github.com/Zolyn/vuepress-plugin-typescript
27 | score: 0.44385961873658797
28 | stars: 0
29 | unstable: false
30 | version: 1.0.3
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@winfe-plugin-demo-container.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/83055655?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: cool-fe
8 | bugs: https://github.com/cool-fe/winex-cli/issues
9 | category: plugins
10 | date: '2021-11-17T03:53:57.515Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/cool-fe/winex-cli#readme
15 | keywords:
16 | - winfe
17 | - vuepress
18 | - material
19 | - plugin
20 | license: false
21 | maintainers: null
22 | name: '@winfe/plugin-demo-container'
23 | npm: https://www.npmjs.com/package/%40winfe%2Fplugin-demo-container
24 | publisher:
25 | avatar: null
26 | email: 18570148691@163.com
27 | name: null
28 | url: null
29 | username: dsx_gao
30 | repository: https://github.com/cool-fe/winex-cli
31 | score: 0.18031966069860686
32 | stars: 3
33 | unstable: false
34 | version: 1.0.4
35 | watchers: 3
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-lite.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/15819224?v=4
4 | email: hezhiyu233@foxmail.com
5 | name: HeskeyBaozi
6 | url: null
7 | username: heskey
8 | bugs: https://github.com/HeskeyBaozi/vuepress-theme-lite/issues
9 | category: themes
10 | date: '2018-04-29T10:18:59.050Z'
11 | deprecated: false
12 | description: VuePress Theme Lite
13 | downloads: null
14 | homepage: https://github.com/HeskeyBaozi/vuepress-theme-lite#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-lite
19 | npm: https://www.npmjs.com/package/vuepress-theme-lite
20 | publisher:
21 | avatar: null
22 | email: hezhiyu971014@foxmail.com
23 | name: null
24 | url: null
25 | username: heskeybaozi
26 | repository: https://github.com/HeskeyBaozi/vuepress-theme-lite
27 | score: 0.4351709409741141
28 | stars: 2
29 | unstable: false
30 | version: 1.0.0
31 | watchers: 2
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@winfe-plugin-material-config.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/83055655?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: cool-fe
8 | bugs: https://github.com/cool-fe/winex-cli/issues
9 | category: plugins
10 | date: '2021-11-26T07:39:22.147Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/cool-fe/winex-cli#readme
15 | keywords:
16 | - winfe
17 | - vuepress
18 | - material
19 | - plugin
20 | license: false
21 | maintainers: null
22 | name: '@winfe/plugin-material-config'
23 | npm: https://www.npmjs.com/package/%40winfe%2Fplugin-material-config
24 | publisher:
25 | avatar: null
26 | email: 18570148691@163.com
27 | name: null
28 | url: null
29 | username: dsx_gao
30 | repository: https://github.com/cool-fe/winex-cli
31 | score: 0.18045188854882788
32 | stars: 3
33 | unstable: false
34 | version: 1.0.10
35 | watchers: 3
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-vbox.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/67640197?v=4
4 | email: null
5 | name: Il Harper
6 | url: null
7 | username: vbox-moe
8 | bugs: https://github.com/vbox-moe/vuepress-plugin-vbox/issues
9 | category: plugins
10 | date: '2020-07-08T07:03:57.655Z'
11 | deprecated: false
12 | description: Plugin for VBox.
13 | downloads: null
14 | homepage: https://github.com/vbox-moe/vuepress-plugin-vbox#readme
15 | keywords:
16 | - vuepress
17 | - vbox
18 | - plugin
19 | license: false
20 | maintainers: null
21 | name: vuepress-plugin-vbox
22 | npm: https://www.npmjs.com/package/vuepress-plugin-vbox
23 | publisher:
24 | avatar: null
25 | email: afanyiyu@hotmail.com
26 | name: null
27 | url: null
28 | username: afanyiyu
29 | repository: https://github.com/vbox-moe/vuepress-plugin-vbox
30 | score: 0.3975494424175926
31 | stars: 1
32 | unstable: true
33 | version: 0.2.1
34 | watchers: 1
35 |
36 | ---
37 |
38 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-system.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: "Fran\xE7ois Romain"
6 | url: null
7 | username: null
8 | bugs: https://github.com/francoisromain/vuepress-theme-system/issues
9 | category: themes
10 | date: '2021-01-08T15:55:06.607Z'
11 | deprecated: false
12 | description: a vuepress theme
13 | downloads: null
14 | homepage: https://github.com/francoisromain/vuepress-theme-system#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | - system.css
19 | license: null
20 | maintainers: null
21 | name: vuepress-theme-system
22 | npm: https://www.npmjs.com/package/vuepress-theme-system
23 | publisher:
24 | avatar: null
25 | email: francoisromain@gmail.com
26 | name: null
27 | url: null
28 | username: francoisromain
29 | repository: https://github.com/francoisromain/vuepress-theme-system
30 | score: 0.29559784895633956
31 | stars: 0
32 | unstable: true
33 | version: 0.1.16
34 | watchers: 0
35 |
36 | ---
37 |
38 |
--------------------------------------------------------------------------------
/content/plugins/@winfe-plugin-auto-material-doc.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/83055655?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: cool-fe
8 | bugs: https://github.com/cool-fe/winex-cli/issues
9 | category: plugins
10 | date: '2021-11-17T03:53:57.099Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/cool-fe/winex-cli#readme
15 | keywords:
16 | - winfe
17 | - vuepress
18 | - material
19 | - plugin
20 | license: false
21 | maintainers: null
22 | name: '@winfe/plugin-auto-material-doc'
23 | npm: https://www.npmjs.com/package/%40winfe%2Fplugin-auto-material-doc
24 | publisher:
25 | avatar: null
26 | email: 18570148691@163.com
27 | name: null
28 | url: null
29 | username: dsx_gao
30 | repository: https://github.com/cool-fe/winex-cli
31 | score: 0.18029097297336258
32 | stars: 3
33 | unstable: false
34 | version: 1.0.4
35 | watchers: 3
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/themes/@leo9466-vuepress-theme-leo.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: themes
10 | date: '2021-05-10T09:26:07.599Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-theme-leo'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-theme-leo
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.14964758660906718
28 | stars: 0
29 | unstable: true
30 | version: 0.0.1-alpha.18
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-prettypure.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/4105970?v=4
4 | email: null
5 | name: HK Chen
6 | url: null
7 | username: HKChen
8 | bugs: https://github.com/HKChen/vuepress-theme-prettyPure/issues
9 | category: themes
10 | date: '2019-01-08T01:34:15.591Z'
11 | deprecated: false
12 | description: vupress theme By HK Chen
13 | downloads: null
14 | homepage: https://github.com/HKChen/vuepress-theme-prettyPure#readme
15 | keywords:
16 | - vuepress
17 | license: MIT License
18 | maintainers: null
19 | name: vuepress-theme-prettypure
20 | npm: https://www.npmjs.com/package/vuepress-theme-prettypure
21 | publisher:
22 | avatar: null
23 | email: ilikeiceblue@gmail.com
24 | name: null
25 | url: null
26 | username: hkchen
27 | repository: https://github.com/HKChen/vuepress-theme-prettyPure
28 | score: 0.40544510131437395
29 | stars: 0
30 | unstable: false
31 | version: 1.0.44
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-trskillblog.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: blank0129@gmail.com
5 | name: Tr-blank
6 | url: null
7 | username: tiya
8 | bugs: https://github.com/Tr-blank/vuepress-theme-trskillblog/issues
9 | category: themes
10 | date: '2019-10-25T06:56:41.056Z'
11 | deprecated: false
12 | description: VuePress Blog Theme - trskillblog
13 | downloads: null
14 | homepage: https://github.com/Tr-blank/vuepress-theme-trskillblog#readme
15 | keywords:
16 | - blog
17 | - theme
18 | - vuepress
19 | license: null
20 | maintainers: null
21 | name: vuepress-theme-trskillblog
22 | npm: https://www.npmjs.com/package/vuepress-theme-trskillblog
23 | publisher:
24 | avatar: null
25 | email: blank0129@gmail.com
26 | name: null
27 | url: null
28 | username: tiya
29 | repository: https://github.com/Tr-blank/vuepress-theme-trskillblog
30 | score: 0.1781729491140099
31 | stars: 0
32 | unstable: false
33 | version: 1.0.0
34 | watchers: 0
35 |
36 | ---
37 |
38 |
--------------------------------------------------------------------------------
/content/themes/@kybetter-vuepress-theme-kyscopetest.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12093502?v=4
4 | email: kybetter@163.com
5 | name: zhaoliang
6 | url: null
7 | username: kybetter
8 | bugs: https://github.com/kybetter/vuepress-theme-kytest/issues
9 | category: themes
10 | date: '2019-04-30T06:15:34.740Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/kybetter/vuepress-theme-kytest#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@kybetter/vuepress-theme-kyscopetest'
19 | npm: https://www.npmjs.com/package/%40kybetter%2Fvuepress-theme-kyscopetest
20 | publisher:
21 | avatar: null
22 | email: kybetter@163.com
23 | name: null
24 | url: null
25 | username: kybetter
26 | repository: https://github.com/kybetter/vuepress-theme-kytest
27 | score: 0.30237841050041836
28 | stars: 0
29 | unstable: false
30 | version: 1.0.2
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-test.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/18205362?v=4
4 | email: meteor.lxy@foxmail.com
5 | name: meteorlxy
6 | url: null
7 | username: meteorlxy
8 | bugs: https://github.com/meteorlxy/vuepress-theme-test/issues
9 | category: themes
10 | date: '2018-05-10T08:16:53.134Z'
11 | deprecated: false
12 | description: Test Theme for Vuepress
13 | downloads: null
14 | homepage: https://github.com/meteorlxy/vuepress-theme-test#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | license: false
19 | maintainers: null
20 | name: vuepress-theme-test
21 | npm: https://www.npmjs.com/package/vuepress-theme-test
22 | publisher:
23 | avatar: null
24 | email: meteor.lxy@foxmail.com
25 | name: null
26 | url: null
27 | username: meteorlxy
28 | repository: https://github.com/meteorlxy/vuepress-theme-test
29 | score: 0.14953056499102269
30 | stars: 1
31 | unstable: true
32 | version: 0.0.1
33 | watchers: 1
34 |
35 | ---
36 |
37 |
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-tabs.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-04-23T23:31:44.340Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-tabs'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-tabs
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.14442080342375957
28 | stars: 0
29 | unstable: false
30 | version: 1.0.1-alpha.2
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-add-this.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-04-16T09:24:36.984Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-add-this'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-add-this
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.12739686998838506
28 | stars: 0
29 | unstable: false
30 | version: 1.1.0
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-comment.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-04-21T06:18:22.892Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-comment'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-comment
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.12818347583377962
28 | stars: 0
29 | unstable: true
30 | version: 0.0.1-alpha.4
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-donate.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-05-10T09:11:58.634Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-donate'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-donate
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.16525440299301225
28 | stars: 0
29 | unstable: false
30 | version: 1.0.1-alpha.5
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@with-rainbow-vuepress-plugin-enhance.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: with-rainbow
6 | url: null
7 | username: null
8 | bugs: https://github.com/with-rainbow/vuepress-plugin-enhance/issues
9 | category: plugins
10 | date: '2022-03-17T03:29:47.898Z'
11 | deprecated: false
12 | description: enhance vuepress
13 | downloads: null
14 | homepage: https://github.com/with-rainbow/vuepress-plugin-enhance#readme
15 | keywords:
16 | - vuepress-plugin
17 | - markdown
18 | license: null
19 | maintainers: null
20 | name: '@with-rainbow/vuepress-plugin-enhance'
21 | npm: https://www.npmjs.com/package/%40with-rainbow%2Fvuepress-plugin-enhance
22 | publisher:
23 | avatar: null
24 | email: rainbow-w@qq.com
25 | name: null
26 | url: null
27 | username: with-rainbow
28 | repository: https://github.com/with-rainbow/vuepress-plugin-enhance
29 | score: 0.44544775813988147
30 | stars: 0
31 | unstable: true
32 | version: 0.1.0
33 | watchers: 0
34 |
35 | ---
36 |
37 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-ken.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/29194135?v=4
4 | email: null
5 | name: jaykenxie
6 | url: null
7 | username: jianjunx
8 | bugs: https://github.com/recoluan/vuepress-theme-reco/issues
9 | category: themes
10 | date: '2019-07-10T07:24:35.471Z'
11 | deprecated: false
12 | description: this is a vuepress theme
13 | downloads: null
14 | homepage: https://github.com/jaykenxie/vuepress-theme-ken#readme
15 | keywords:
16 | - vuepress
17 | - vue
18 | - theme
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-theme-ken
22 | npm: https://www.npmjs.com/package/vuepress-theme-ken
23 | publisher:
24 | avatar: null
25 | email: jaykenxie@outlook.com
26 | name: null
27 | url: null
28 | username: jaykenxie
29 | repository: https://github.com/jaykenxie/vuepress-theme-ken
30 | score: 0.4119286982638148
31 | stars: 1
32 | unstable: false
33 | version: 1.2.0
34 | watchers: 1
35 |
36 | ---
37 |
38 | # vuepress-theme-ken
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-back-to-top.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-04-14T03:41:37.198Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-back-to-top'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-back-to-top
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.07801314906816945
28 | stars: 0
29 | unstable: true
30 | version: 0.0.1
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-sitemap.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liyang.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo946666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-05-10T09:11:57.325Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-sitemap'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-sitemap
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.10670317416484254
28 | stars: 0
29 | unstable: false
30 | version: 1.0.1-alpha.0
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-markdown-it-advance.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-04-13T06:02:48.427Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-plugin-markdown-it-advance
19 | npm: https://www.npmjs.com/package/vuepress-plugin-markdown-it-advance
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.14942675925671936
28 | stars: 0
29 | unstable: true
30 | version: 0.0.1-alpha.1
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-to-wordpress.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: lzw.
6 | url: null
7 | username: null
8 | bugs: https://github.com/lzwdot/vuepress-plugin-to-wordpress/issues
9 | category: plugins
10 | date: '2022-02-05T06:58:21.371Z'
11 | deprecated: false
12 | description: A vuepress plugin uses XmlRpc to synchronize Vuepress content to WordPress
13 | downloads: null
14 | homepage: https://github.com/lzwdot/vuepress-plugin-to-wordpress
15 | keywords:
16 | - vuepress-plugin-to-wordpress
17 | license: null
18 | maintainers: null
19 | name: vuepress-plugin-to-wordpress
20 | npm: https://www.npmjs.com/package/vuepress-plugin-to-wordpress
21 | publisher:
22 | avatar: null
23 | email: lzwdot@qq.com
24 | name: null
25 | url: null
26 | username: lzwdot
27 | repository: https://github.com/lzwdot/vuepress-plugin-to-wordpress
28 | score: 0.555335387287681
29 | stars: 0
30 | unstable: true
31 | version: 1.0.0-beta.14
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/plugins/@kidonng-vuepress-plugin-contributors.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: hi@xuann.wang
5 | name: Kid
6 | url: https://xuann.wang
7 | username: null
8 | bugs: https://github.com/kidonng/vuepress-plugin-contributors/issues
9 | category: plugins
10 | date: '2021-02-27T14:21:08.522Z'
11 | deprecated: false
12 | description: VuePress plugin for showing GitHub contributors
13 | downloads: null
14 | homepage: https://github.com/kidonng/vuepress-plugin-contributors#readme
15 | keywords: null
16 | license: null
17 | maintainers: null
18 | name: '@kidonng/vuepress-plugin-contributors'
19 | npm: https://www.npmjs.com/package/%40kidonng%2Fvuepress-plugin-contributors
20 | publisher:
21 | avatar: null
22 | email: kidonng@gmail.com
23 | name: null
24 | url: null
25 | username: kidonng
26 | repository: https://github.com/kidonng/vuepress-plugin-contributors
27 | score: 0.31957877930328776
28 | stars: 0
29 | unstable: true
30 | version: 0.3.0
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@winfe-plugin-registry-material-components.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/83055655?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: cool-fe
8 | bugs: https://github.com/cool-fe/winex-cli/issues
9 | category: plugins
10 | date: '2021-11-26T07:39:19.255Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/cool-fe/winex-cli#readme
15 | keywords:
16 | - winfe
17 | - vuepress
18 | - material
19 | - plugin
20 | license: false
21 | maintainers: null
22 | name: '@winfe/plugin-registry-material-components'
23 | npm: https://www.npmjs.com/package/%40winfe%2Fplugin-registry-material-components
24 | publisher:
25 | avatar: null
26 | email: 18570148691@163.com
27 | name: null
28 | url: null
29 | username: dsx_gao
30 | repository: https://github.com/cool-fe/winex-cli
31 | score: 0.1804615206042139
32 | stars: 3
33 | unstable: false
34 | version: 1.0.6
35 | watchers: 3
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/themes/@fhtw-vuepress-theme-bsa5-ak-webdev.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/13609768?v=4
4 | email: sabic.alija@gmail.com
5 | name: Alija Sabic
6 | url: null
7 | username: alija
8 | bugs: https://github.com/sabicalija/webdev.js/issues
9 | category: themes
10 | date: '2020-06-05T07:55:38.687Z'
11 | deprecated: false
12 | description: Vuepress theme for webdev course (bsa5, ak)
13 | downloads: null
14 | homepage: https://github.com/sabicalija/webdev.js#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@fhtw/vuepress-theme-bsa5-ak-webdev'
19 | npm: https://www.npmjs.com/package/%40fhtw%2Fvuepress-theme-bsa5-ak-webdev
20 | publisher:
21 | avatar: null
22 | email: sabic.alija@gmail.com
23 | name: null
24 | url: null
25 | username: alija
26 | repository: https://github.com/sabicalija/webdev.js
27 | score: 0.19617597206728413
28 | stars: 0
29 | unstable: true
30 | version: 1.0.0-beta.2
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-block-winyh.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: winyh
6 | url: null
7 | username: null
8 | bugs: https://github.com/winyh/vuepress-plugin-demo-container/issues
9 | category: plugins
10 | date: '2020-09-28T03:19:29.313Z'
11 | deprecated: false
12 | description: Vuepress plugin for demo block.
13 | downloads: null
14 | homepage: https://github.com/winyh/vuepress-plugin-demo-container#readme
15 | keywords:
16 | - documentation
17 | - plugin
18 | - vue
19 | - vuepress
20 | - demo
21 | - block
22 | license: null
23 | maintainers: null
24 | name: vuepress-plugin-block-winyh
25 | npm: https://www.npmjs.com/package/vuepress-plugin-block-winyh
26 | publisher:
27 | avatar: null
28 | email: 2712192471@qq.com
29 | name: null
30 | url: null
31 | username: winyh
32 | repository: https://github.com/winyh/vuepress-plugin-demo-container
33 | score: 0.42991590788095413
34 | stars: 0
35 | unstable: true
36 | version: 0.0.3
37 | watchers: 0
38 |
39 | ---
40 |
41 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-write.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/73059627?v=4
4 | email: 18366276315@163.com
5 | name: zh-lx
6 | url: null
7 | username: zh-lx
8 | bugs: https://github.com/zh-lx/vuepress-theme-writing/issues
9 | category: themes
10 | date: '2022-03-03T16:55:29.187Z'
11 | deprecated: false
12 | description: A theme of vuepress2, which can help you focus on writing through simple
13 | configuration.
14 | downloads: null
15 | homepage: https://github.com/zh-lx/vuepress-theme-writing#readme
16 | keywords: null
17 | license: false
18 | maintainers: null
19 | name: vuepress-theme-write
20 | npm: https://www.npmjs.com/package/vuepress-theme-write
21 | publisher:
22 | avatar: null
23 | email: 18366276315@163.com
24 | name: null
25 | url: null
26 | username: zh-lx
27 | repository: https://github.com/zh-lx/vuepress-theme-writing
28 | score: 0.4032098746080141
29 | stars: 0
30 | unstable: true
31 | version: 0.0.6
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/plugins/@aphorica-vuepress-plugin-headertags.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: null
6 | url: null
7 | username: null
8 | bugs: https://github.com/Aphorica/vuepress-plugin-headertags/issues
9 | category: plugins
10 | date: '2020-04-10T19:56:58.912Z'
11 | deprecated: false
12 | description: add user defined header tags to vuepress page
13 | downloads: null
14 | homepage: https://github.com/Aphorica/vuepress-plugin-headertags#readme
15 | keywords:
16 | - vue
17 | - vuepress
18 | - generator
19 | license: null
20 | maintainers: null
21 | name: '@aphorica/vuepress-plugin-headertags'
22 | npm: https://www.npmjs.com/package/%40aphorica%2Fvuepress-plugin-headertags
23 | publisher:
24 | avatar: null
25 | email: gbergeraph@gmail.com
26 | name: null
27 | url: null
28 | username: rickbsgu
29 | repository: https://github.com/Aphorica/vuepress-plugin-headertags
30 | score: 0.3559515664603454
31 | stars: 0
32 | unstable: false
33 | version: 1.0.1
34 | watchers: 0
35 |
36 | ---
37 |
38 |
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-one-click-copy.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-05-10T09:11:57.406Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-one-click-copy'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-one-click-copy
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.14442080342375957
28 | stars: 0
29 | unstable: false
30 | version: 1.0.1-alpha.3
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-kb.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/3523840?v=4
4 | email: null
5 | name: mark.stacey@aphelion.bi>
6 | url: null
7 | username: AphelionSoftware
8 | bugs: https://github.com/aphelionsoftware/vuepress-theme-kb/issues
9 | category: themes
10 | date: '2019-11-16T07:11:40.534Z'
11 | deprecated: false
12 | description: OrcaFit knowledge basetheme for VuePress
13 | downloads: null
14 | homepage: https://github.com/aphelionsoftware/vuepress-theme-kb#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-theme-kb
19 | npm: https://www.npmjs.com/package/vuepress-theme-kb
20 | publisher:
21 | avatar: null
22 | email: fitness@aphelion.bi
23 | name: null
24 | url: null
25 | username: orcafit
26 | repository: https://github.com/aphelionsoftware/vuepress-theme-kb
27 | score: 0.4932922595854883
28 | stars: 0
29 | unstable: false
30 | version: 1.3.10
31 | watchers: 0
32 |
33 | ---
34 |
35 | # vuepress-theme-kb
36 |
37 |
--------------------------------------------------------------------------------
/content/plugins/@panzhiyue-vuepress-plugin-demo-block.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: panzhiyue
6 | url: null
7 | username: null
8 | bugs: https://github.com/panzhiyue/vuepress-theme-knowledge/issues
9 | category: plugins
10 | date: '2022-06-14T02:41:44.885Z'
11 | deprecated: false
12 | description: "Vuepress2.x\u793A\u4F8B\u5757\u63D2\u4EF6"
13 | downloads: null
14 | homepage: https://panzhiyue.github.io/vuepress-theme-knowledge
15 | keywords:
16 | - vuepress-plugin
17 | - vuepress
18 | - plugin
19 | license: null
20 | maintainers: null
21 | name: '@panzhiyue/vuepress-plugin-demo-block'
22 | npm: https://www.npmjs.com/package/%40panzhiyue%2Fvuepress-plugin-demo-block
23 | publisher:
24 | avatar: null
25 | email: 892105346@qq.com
26 | name: null
27 | url: null
28 | username: panzhiyue
29 | repository: https://github.com/panzhiyue/vuepress-theme-knowledge
30 | score: 0.5018260338908067
31 | stars: 0
32 | unstable: true
33 | version: 1.0.0-beta.3
34 | watchers: 0
35 |
36 | ---
37 |
38 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-ajwi.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: ajwipo@gmail.com
5 | name: aj-wi
6 | url: null
7 | username: ajwipo
8 | bugs: https://github.com/aj-wi/aj-theme-blog_vuepress/issues
9 | category: themes
10 | date: '2021-06-22T14:35:18.606Z'
11 | deprecated: false
12 | description: Another blog theme for VuePress
13 | downloads: null
14 | homepage: https://github.com/aj-wi/aj-theme-blog_vuepress#readme
15 | keywords:
16 | - vue
17 | - vuepress
18 | - blog
19 | - vuepress-theme
20 | - vuepress-blog
21 | - vuepress-theme-blog
22 | - vuepress-theme-ajwi
23 | license: null
24 | maintainers: null
25 | name: vuepress-theme-ajwi
26 | npm: https://www.npmjs.com/package/vuepress-theme-ajwi
27 | publisher:
28 | avatar: null
29 | email: ajwipo@gmail.com
30 | name: null
31 | url: null
32 | username: ajwipo
33 | repository: https://github.com/aj-wi/aj-theme-blog_vuepress
34 | score: 0.49233986701939003
35 | stars: 0
36 | unstable: false
37 | version: 1.0.2
38 | watchers: 0
39 |
40 | ---
41 |
42 |
--------------------------------------------------------------------------------
/content/plugins/@fhtw-vuepress-plugin-directory-classifier.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/13609768?v=4
4 | email: sabic.alija@gmail.com
5 | name: Alija Sabic
6 | url: null
7 | username: alija
8 | bugs: https://github.com/sabicalija/webdev.js/issues
9 | category: plugins
10 | date: '2019-09-09T00:47:04.936Z'
11 | deprecated: false
12 | description: Vuepress plugin for directory based classification
13 | downloads: null
14 | homepage: https://github.com/sabicalija/webdev.js#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@fhtw/vuepress-plugin-directory-classifier'
19 | npm: https://www.npmjs.com/package/%40fhtw%2Fvuepress-plugin-directory-classifier
20 | publisher:
21 | avatar: null
22 | email: sabic.alija@gmail.com
23 | name: null
24 | url: null
25 | username: alija
26 | repository: https://github.com/sabicalija/webdev.js
27 | score: 0.18267429770759622
28 | stars: 0
29 | unstable: true
30 | version: 0.0.1
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/@leo9466-vuepress-plugin-markdown-it-advance.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: plugins
10 | date: '2021-05-10T09:26:02.928Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@leo9466/vuepress-plugin-markdown-it-advance'
19 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-plugin-markdown-it-advance
20 | publisher:
21 | avatar: null
22 | email: liyang.ok@outlook.com
23 | name: null
24 | url: null
25 | username: leo946666
26 | repository: https://github.com/leo94666/leo94666.github.io
27 | score: 0.11573284712293
28 | stars: 0
29 | unstable: true
30 | version: 0.0.1-alpha.5
31 | watchers: 0
32 |
33 | ---
34 |
35 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-automenu.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/23348287?v=4
4 | email: null
5 | name: itgou
6 | url: null
7 | username: itgou
8 | bugs: https://github.com/itgou/vuepress-plugin-automenu/issues
9 | category: plugins
10 | date: '2022-02-17T12:51:16.887Z'
11 | deprecated: false
12 | description: '``` vuepress automenu docs ```'
13 | downloads: null
14 | homepage: https://github.com/itgou/vuepress-plugin-automenu
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-plugin-automenu
19 | npm: https://www.npmjs.com/package/vuepress-plugin-automenu
20 | publisher:
21 | avatar: null
22 | email: 412300204@qq.com
23 | name: null
24 | url: null
25 | username: itgou
26 | repository: https://github.com/itgou/vuepress-plugin-automenu
27 | score: 0.4977060353409072
28 | stars: 0
29 | unstable: false
30 | version: 1.0.4
31 | watchers: 0
32 |
33 | ---
34 |
35 | # 自动生成 vuepress 的顶部目录和左侧目录
36 |
37 | ```
38 | vuepress automenu docs
39 | ```
40 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-yolo.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/58064072?v=4
4 | email: null
5 | name: dshu
6 | url: null
7 | username: dshuu
8 | bugs: https://github.com/dshuu/vuepress-theme-yolo/issues
9 | category: themes
10 | date: '2020-09-02T07:56:58.374Z'
11 | deprecated: false
12 | description: Extremely simple
13 | downloads: null
14 | homepage: https://github.com/dshuu/vuepress-theme-yolo
15 | keywords:
16 | - vuepress
17 | - vue
18 | - theme
19 | license: false
20 | maintainers: null
21 | name: vuepress-theme-yolo
22 | npm: https://www.npmjs.com/package/vuepress-theme-yolo
23 | publisher:
24 | avatar: null
25 | email: dshu1213@163.com
26 | name: null
27 | url: null
28 | username: dshuuu
29 | repository: https://github.com/dshuu/vuepress-theme-yolo
30 | score: 0.31774747129333303
31 | stars: 0
32 | unstable: false
33 | version: 1.0.6
34 | watchers: 0
35 |
36 | ---
37 |
38 | # vuepress主题
39 |
40 | - [ ] 主页布局
41 | - [ ] sidebar
42 | - [ ] detail
43 |
44 |
45 |
--------------------------------------------------------------------------------
/content/plugins/@mr-huang-vuepress-plugin-blog.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/24950299?v=4
4 | email: null
5 | name: mr-huang
6 | url: null
7 | username: CavinHuang
8 | bugs: https://github.com/cavinHuang/vuepress-theme-weasel/issues
9 | category: plugins
10 | date: '2022-05-11T09:27:39.583Z'
11 | deprecated: false
12 | description: weasel theme
13 | downloads: null
14 | homepage: https://github.com/cavinHuang/vuepress-theme-weasel#readme
15 | keywords:
16 | - vue3
17 | - weasel
18 | - vuepress plugin
19 | - vuepress
20 | license: false
21 | maintainers: null
22 | name: '@mr-huang/vuepress-plugin-blog'
23 | npm: https://www.npmjs.com/package/%40mr-huang%2Fvuepress-plugin-blog
24 | publisher:
25 | avatar: null
26 | email: sujinw@qq.com
27 | name: null
28 | url: null
29 | username: sujinw
30 | repository: https://github.com/cavinHuang/vuepress-theme-weasel
31 | score: 0.15210089270138527
32 | stars: 0
33 | unstable: true
34 | version: 1.0.0-beta.1
35 | watchers: 0
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/themes/@mr-huang-vuepress-theme-weasel.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/24950299?v=4
4 | email: null
5 | name: mr-huang
6 | url: null
7 | username: CavinHuang
8 | bugs: https://github.com/cavinHuang/vuepress-theme-weasel/issues
9 | category: themes
10 | date: '2022-05-11T09:27:54.055Z'
11 | deprecated: false
12 | description: weasel theme
13 | downloads: null
14 | homepage: https://github.com/cavinHuang/vuepress-theme-weasel#readme
15 | keywords:
16 | - vue3
17 | - weasel
18 | - vuepress plugin
19 | - vuepress
20 | license: false
21 | maintainers: null
22 | name: '@mr-huang/vuepress-theme-weasel'
23 | npm: https://www.npmjs.com/package/%40mr-huang%2Fvuepress-theme-weasel
24 | publisher:
25 | avatar: null
26 | email: sujinw@qq.com
27 | name: null
28 | url: null
29 | username: sujinw
30 | repository: https://github.com/cavinHuang/vuepress-theme-weasel
31 | score: 0.5144896743807927
32 | stars: 0
33 | unstable: true
34 | version: 1.0.0-beta.1
35 | watchers: 0
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-liuli.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/25994733?v=4
4 | email: dong550293874@163.com
5 | name: liulixin
6 | url: null
7 | username: liulxin
8 | bugs: https://github.com/liulxin/vuepress-theme-liuli/issues
9 | category: themes
10 | date: '2020-01-09T10:00:26.818Z'
11 | deprecated: false
12 | description: A simple and beautiful vuepress Blog & Doc theme
13 | downloads: null
14 | homepage: https://github.com/liulxin/vuepress-theme-liuli#readme
15 | keywords:
16 | - vuepress
17 | - vue
18 | - theme
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-theme-liuli
22 | npm: https://www.npmjs.com/package/vuepress-theme-liuli
23 | publisher:
24 | avatar: null
25 | email: 550293874@qq.com
26 | name: null
27 | url: null
28 | username: dongwudi
29 | repository: https://github.com/liulxin/vuepress-theme-liuli
30 | score: 0.5032311307067704
31 | stars: 0
32 | unstable: false
33 | version: 1.1.0
34 | watchers: 0
35 |
36 | ---
37 |
38 | # vuepress-theme-liuli
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-baidu-analytics.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/62365720?v=4
4 | email: null
5 | name: roiding
6 | url: null
7 | username: roiding
8 | bugs: https://github.com/roiding/plugin-baidu-analytics/issues
9 | category: plugins
10 | date: '2022-06-16T07:35:16.307Z'
11 | deprecated: false
12 | description: VuePress plugin - baidu-analytics
13 | downloads: null
14 | homepage: https://github.com/roiding
15 | keywords:
16 | - vuepress-plugin
17 | - vuepress
18 | - plugin
19 | - baidu
20 | - analytics
21 | license: false
22 | maintainers: null
23 | name: vuepress-plugin-baidu-analytics
24 | npm: https://www.npmjs.com/package/vuepress-plugin-baidu-analytics
25 | publisher:
26 | avatar: null
27 | email: dingran@ran-ding.ga
28 | name: null
29 | url: null
30 | username: roiding
31 | repository: https://github.com/roiding/plugin-baidu-analytics
32 | score: 0.4841979318377231
33 | stars: 0
34 | unstable: false
35 | version: 2.0.0-beta.47
36 | watchers: 0
37 |
38 | ---
39 |
40 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-clipboard.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: zhengqbbb@gmail.com
5 | name: zhengqbbb
6 | url: null
7 | username: null
8 | bugs: https://github.com/zhengqbbb/zhengqbbb.github.io
9 | category: plugins
10 | date: '2022-05-28T06:26:45.718Z'
11 | deprecated: false
12 | description: Vuepress2 plugin - code clipboard
13 | downloads: null
14 | homepage: https://www.qbenben.com/docs/play/vuepress-plugin-clipboard
15 | keywords:
16 | - vuepress-plugin
17 | - vuepress2
18 | - codecopy
19 | - code-copy
20 | - code-clipboard
21 | - clipboard
22 | license: null
23 | maintainers: null
24 | name: vuepress-plugin-clipboard
25 | npm: https://www.npmjs.com/package/vuepress-plugin-clipboard
26 | publisher:
27 | avatar: null
28 | email: 1074059947@qq.com
29 | name: null
30 | url: null
31 | username: zhengqbbb
32 | repository: https://github.com/Zhengqbbb/zhengqbbb.github.io/tree/main
33 | score: 0.4979077730420892
34 | stars: 0
35 | unstable: false
36 | version: 2.1.1
37 | watchers: 0
38 |
39 | ---
40 |
41 |
--------------------------------------------------------------------------------
/content/plugins/@mr-huang-vuepress-plugin-comment.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/24950299?v=4
4 | email: null
5 | name: mr-huang
6 | url: null
7 | username: CavinHuang
8 | bugs: https://github.com/cavinHuang/vuepress-theme-weasel/issues
9 | category: plugins
10 | date: '2022-05-11T09:27:43.645Z'
11 | deprecated: false
12 | description: weasel theme
13 | downloads: null
14 | homepage: https://github.com/cavinHuang/vuepress-theme-weasel#readme
15 | keywords:
16 | - vue3
17 | - weasel
18 | - vuepress plugin
19 | - vuepress
20 | license: false
21 | maintainers: null
22 | name: '@mr-huang/vuepress-plugin-comment'
23 | npm: https://www.npmjs.com/package/%40mr-huang%2Fvuepress-plugin-comment
24 | publisher:
25 | avatar: null
26 | email: sujinw@qq.com
27 | name: null
28 | url: null
29 | username: sujinw
30 | repository: https://github.com/cavinHuang/vuepress-theme-weasel
31 | score: 0.15200266330901097
32 | stars: 0
33 | unstable: true
34 | version: 1.0.0-beta.1
35 | watchers: 0
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/plugins/@mr-huang-vuepress-plugin-sitemap.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/24950299?v=4
4 | email: null
5 | name: mr-huang
6 | url: null
7 | username: CavinHuang
8 | bugs: https://github.com/cavinHuang/vuepress-theme-weasel/issues
9 | category: plugins
10 | date: '2022-05-18T09:56:04.301Z'
11 | deprecated: false
12 | description: weasel theme
13 | downloads: null
14 | homepage: https://github.com/cavinHuang/vuepress-theme-weasel#readme
15 | keywords:
16 | - vue3
17 | - weasel
18 | - vuepress plugin
19 | - vuepress
20 | license: false
21 | maintainers: null
22 | name: '@mr-huang/vuepress-plugin-sitemap'
23 | npm: https://www.npmjs.com/package/%40mr-huang%2Fvuepress-plugin-sitemap
24 | publisher:
25 | avatar: null
26 | email: sujinw@qq.com
27 | name: null
28 | url: null
29 | username: sujinw
30 | repository: https://github.com/cavinHuang/vuepress-theme-weasel
31 | score: 0.15019534565041753
32 | stars: 0
33 | unstable: true
34 | version: 1.0.0-beta.11
35 | watchers: 0
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-component-catalog.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/16383815?v=4
4 | email: make.app.ts@gmail.com
5 | name: mya-ake
6 | url: null
7 | username: mya-ake
8 | bugs: https://github.com/mya-ake/vuepress-theme-component-catalog/issues
9 | category: themes
10 | date: '2019-01-29T18:57:56.311Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/mya-ake/vuepress-theme-component-catalog#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-theme-component-catalog
19 | npm: https://www.npmjs.com/package/vuepress-theme-component-catalog
20 | publisher:
21 | avatar: null
22 | email: make.app.ts@gmail.com
23 | name: null
24 | url: null
25 | username: mya-ake
26 | repository: https://github.com/mya-ake/vuepress-theme-component-catalog
27 | score: 0.40866955789034776
28 | stars: 1
29 | unstable: true
30 | version: 0.0.17
31 | watchers: 1
32 |
33 | ---
34 |
35 | # vuepress-theme-component-catalog
--------------------------------------------------------------------------------
/content/themes/@leo9466-vuepress-theme-default.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/71742460?v=4
4 | email: liayng.ok@outlook.com
5 | name: leo
6 | url: null
7 | username: leo94666
8 | bugs: https://github.com/leo94666/leo94666.github.io/issues
9 | category: themes
10 | date: '2021-04-21T06:12:36.382Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/leo94666/leo94666.github.io#readme
15 | keywords:
16 | - documentation
17 | - generator
18 | - vue
19 | - vuepress
20 | license: false
21 | maintainers: null
22 | name: '@leo9466/vuepress-theme-default'
23 | npm: https://www.npmjs.com/package/%40leo9466%2Fvuepress-theme-default
24 | publisher:
25 | avatar: null
26 | email: liyang.ok@outlook.com
27 | name: null
28 | url: null
29 | username: leo946666
30 | repository: https://github.com/leo94666/leo94666.github.io
31 | score: 0.09870684154573736
32 | stars: 0
33 | unstable: true
34 | version: 0.0.1-alpha.2
35 | watchers: 0
36 |
37 | ---
38 |
39 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-celesta.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/41458459?v=4
4 | email: yuan.zx@outlook.com
5 | name: Celeste
6 | url: null
7 | username: yzx9
8 | bugs: https://github.com/nsznsznjsz/vuepress-theme-celesta/issues
9 | category: themes
10 | date: '2021-02-05T14:47:58.893Z'
11 | deprecated: false
12 | description: Blog theme for vuepress-next
13 | downloads: null
14 | homepage: https://github.com/nsznsznjsz/vuepress-theme-celesta/
15 | keywords:
16 | - blog
17 | - vuepress
18 | - vuepress-theme
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-theme-celesta
22 | npm: https://www.npmjs.com/package/vuepress-theme-celesta
23 | publisher:
24 | avatar: null
25 | email: nsznsznjsz@outlook.com
26 | name: null
27 | url: null
28 | username: nsznsznjsz
29 | repository: https://github.com/nsznsznjsz/vuepress-theme-celesta
30 | score: 0.38280775597724565
31 | stars: 1
32 | unstable: true
33 | version: 0.1.0
34 | watchers: 1
35 |
36 | ---
37 |
38 | # vuepress-theme-celesta
39 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-clarity-analytics.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/62365720?v=4
4 | email: null
5 | name: roiding
6 | url: null
7 | username: roiding
8 | bugs: https://github.com/roiding/plugin-clarity-analytics/issues
9 | category: plugins
10 | date: '2022-06-16T08:53:18.855Z'
11 | deprecated: false
12 | description: VuePress plugin - clarity-analytics
13 | downloads: null
14 | homepage: https://github.com/roiding
15 | keywords:
16 | - vuepress-plugin
17 | - vuepress
18 | - plugin
19 | - clarity
20 | - analytics
21 | license: false
22 | maintainers: null
23 | name: vuepress-plugin-clarity-analytics
24 | npm: https://www.npmjs.com/package/vuepress-plugin-clarity-analytics
25 | publisher:
26 | avatar: null
27 | email: dingran@ran-ding.ga
28 | name: null
29 | url: null
30 | username: roiding
31 | repository: https://github.com/roiding/plugin-clarity-analytics
32 | score: 0.48203811321329243
33 | stars: 0
34 | unstable: false
35 | version: 2.0.0-beta.47
36 | watchers: 0
37 |
38 | ---
39 |
40 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-bootstrap.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/36023898?v=4
4 | email: ekoeryanto@gmail.com
5 | name: Eko Eryanto
6 | url: null
7 | username: ekoeryanto
8 | bugs: https://github.com/ekoeryanto/vuepress-theme-bootstrap/issues
9 | category: themes
10 | date: '2018-09-21T04:31:42.835Z'
11 | deprecated: false
12 | description: Bootstrap theme for Vuepress
13 | downloads: null
14 | homepage: https://github.com/ekoeryanto/vuepress-theme-bootstrap#readme
15 | keywords:
16 | - bootstrap
17 | - vuepress
18 | license: false
19 | maintainers: null
20 | name: vuepress-theme-bootstrap
21 | npm: https://www.npmjs.com/package/vuepress-theme-bootstrap
22 | publisher:
23 | avatar: null
24 | email: ekoeryanto@gmail.com
25 | name: null
26 | url: null
27 | username: ekoeryanto
28 | repository: https://github.com/ekoeryanto/vuepress-theme-bootstrap
29 | score: 0.4056064450376202
30 | stars: 0
31 | unstable: true
32 | version: 0.0.0-1
33 | watchers: 0
34 |
35 | ---
36 |
37 | # Bootstrap Theme for Vuepress
38 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-bootstrap-simple.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/46619411?v=4
4 | email: null
5 | name: Bambusaceae
6 | url: null
7 | username: e3c8f1a924
8 | bugs: https://github.com/Bambusaceae/vuepress-theme-bootstrap-simple/issues
9 | category: themes
10 | date: '2020-10-24T11:28:05.532Z'
11 | deprecated: false
12 | description: A blog theme based on Vuepress.
13 | downloads: null
14 | homepage: https://github.com/Bambusaceae/vuepress-theme-bootstrap-simple#readme
15 | keywords:
16 | - vuepress
17 | - bootstrap
18 | license: MIT License
19 | maintainers: null
20 | name: vuepress-theme-bootstrap-simple
21 | npm: https://www.npmjs.com/package/vuepress-theme-bootstrap-simple
22 | publisher:
23 | avatar: null
24 | email: zhhahhsh@outlook.com
25 | name: null
26 | url: null
27 | username: bambusaceae
28 | repository: https://github.com/Bambusaceae/vuepress-theme-bootstrap-simple
29 | score: 0.4832390650634713
30 | stars: 2
31 | unstable: false
32 | version: 1.1.4
33 | watchers: 2
34 |
35 | ---
36 |
37 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-musubii.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/9658016?v=4
4 | email: null
5 | name: Qrac
6 | url: https://qrac.jp
7 | username: qrac
8 | bugs: https://github.com/qrac/vuepress-theme-musubii/issues
9 | category: themes
10 | date: '2020-07-03T02:14:32.003Z'
11 | deprecated: false
12 | description: VuePress theme based on MUSUBii SCSS & CSS Variables
13 | downloads: null
14 | homepage: https://musubii.qranoko.jp
15 | keywords:
16 | - vuepress
17 | - scss
18 | - css-variables
19 | - documentation
20 | - japanese
21 | - musubii
22 | license: MIT License
23 | maintainers: null
24 | name: vuepress-theme-musubii
25 | npm: https://www.npmjs.com/package/vuepress-theme-musubii
26 | publisher:
27 | avatar: null
28 | email: 173581251@qq.com
29 | name: null
30 | url: null
31 | username: wenfangcao
32 | repository: https://github.com/qrac/vuepress-theme-musubii
33 | score: 0.4334391033658021
34 | stars: 3
35 | unstable: true
36 | version: 0.0.2
37 | watchers: 3
38 |
39 | ---
40 |
41 | # vuepress-theme-musubii
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-bgfire.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/25003088?v=4
4 | email: null
5 | name: laughing
6 | url: null
7 | username: v-laughing
8 | bugs: https://github.com/v-laughing/vuepress-plugin-bgfire/issues
9 | category: plugins
10 | date: '2021-05-04T11:05:31.787Z'
11 | deprecated: false
12 | description: choose and change content background color in vuepress project
13 | downloads: null
14 | homepage: https://github.com/v-laughing/vuepress-plugin-bgfire#readme
15 | keywords:
16 | - vuepress
17 | - background
18 | - color
19 | license: false
20 | maintainers: null
21 | name: vuepress-plugin-bgfire
22 | npm: https://www.npmjs.com/package/vuepress-plugin-bgfire
23 | publisher:
24 | avatar: null
25 | email: mylaughtale@outlook.com
26 | name: null
27 | url: null
28 | username: laughingwu
29 | repository: https://github.com/v-laughing/vuepress-plugin-bgfire
30 | score: 0.1782768014116801
31 | stars: 0
32 | unstable: false
33 | version: 1.0.0
34 | watchers: 0
35 |
36 | ---
37 |
38 | # vuepress-plugin-bgfire
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-lovely.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/32385948?v=4
4 | email: null
5 | name: zp961214
6 | url: null
7 | username: zp961214
8 | bugs: https://github.com/zp961214/vuepress-theme-lovely
9 | category: themes
10 | date: '2019-04-07T13:39:13.567Z'
11 | deprecated: false
12 | description: a lovely vuepress theme
13 | downloads: null
14 | homepage: https://github.com/zp961214/vuepress-theme-lovely
15 | keywords:
16 | - vuepress-theme
17 | - vuepress-theme-lovely
18 | - vuepress-theme-blog
19 | - theme-blog
20 | license: false
21 | maintainers: null
22 | name: vuepress-theme-lovely
23 | npm: https://www.npmjs.com/package/vuepress-theme-lovely
24 | publisher:
25 | avatar: null
26 | email: 853950441@qq.com
27 | name: null
28 | url: null
29 | username: zp961214
30 | repository: https://github.com/zp961214/vuepress-theme-lovely
31 | score: 0.3743084362317609
32 | stars: 0
33 | unstable: true
34 | version: 0.0.6
35 | watchers: 0
36 |
37 | ---
38 |
39 | # vuepress-theme-lovely
40 | a lovely vuepress theme
41 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-browserframe.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/979071?v=4
4 | email: info@sillevl.be
5 | name: Sille Van Landschoot
6 | url: null
7 | username: sillevl
8 | bugs: https://github.com/sillevl/vuepress-plugin-browserframe/issues
9 | category: plugins
10 | date: '2020-10-27T11:54:23.533Z'
11 | deprecated: false
12 | description: Add browserframes to image
13 | downloads: null
14 | homepage: https://github.com/sillevl/vuepress-plugin-browserframe#readme
15 | keywords:
16 | - vue
17 | - vuepress
18 | - plugin
19 | - browserframe
20 | - browsermockup
21 | license: false
22 | maintainers: null
23 | name: vuepress-plugin-browserframe
24 | npm: https://www.npmjs.com/package/vuepress-plugin-browserframe
25 | publisher:
26 | avatar: null
27 | email: info@sillevl.be
28 | name: null
29 | url: null
30 | username: sillevl
31 | repository: https://github.com/sillevl/vuepress-plugin-browserframe
32 | score: 0.3914891378461569
33 | stars: 0
34 | unstable: true
35 | version: 0.1.0
36 | watchers: 0
37 |
38 | ---
39 |
40 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-kanban-live2d.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/93028958?v=4
4 | email: 1278441339@qq.com
5 | name: ccy
6 | url: null
7 | username: francissaber
8 | bugs: https://github.com/FrancisSaber/vuepress-plugin-kanban-live2d/issues
9 | category: plugins
10 | date: '2022-03-09T14:45:51.323Z'
11 | deprecated: false
12 | description: "vuepress \u770B\u677F\u5A18\u63D2\u4EF6\uFF0C\u652F\u6301moc3.0"
13 | downloads: null
14 | homepage: https://github.com/FrancisSaber/vuepress-plugin-kanban-live2d#readme
15 | keywords:
16 | - vuepress-plugin
17 | license: false
18 | maintainers: null
19 | name: vuepress-plugin-kanban-live2d
20 | npm: https://www.npmjs.com/package/vuepress-plugin-kanban-live2d
21 | publisher:
22 | avatar: null
23 | email: 1278441339@qq.com
24 | name: null
25 | url: null
26 | username: francissaber
27 | repository: https://github.com/FrancisSaber/vuepress-plugin-kanban-live2d
28 | score: 0.18059007433624055
29 | stars: 0
30 | unstable: false
31 | version: 1.4.6
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-xanadu.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/7350513?v=4
4 | email: null
5 | name: Evan You
6 | url: null
7 | username: JohnsenZhou
8 | bugs: https://github.com/JohnsenZhou/Xanadu/issues
9 | category: themes
10 | date: '2020-03-05T15:38:09.302Z'
11 | deprecated: false
12 | description: VuePress theme for Xanadu
13 | downloads: null
14 | homepage: https://github.com/JohnsenZhou/Xanadu#readme
15 | keywords:
16 | - documentation
17 | - generator
18 | - vue
19 | - vuepress
20 | license: MIT License
21 | maintainers: null
22 | name: vuepress-theme-xanadu
23 | npm: https://www.npmjs.com/package/vuepress-theme-xanadu
24 | publisher:
25 | avatar: null
26 | email: 296240671@qq.com
27 | name: null
28 | url: null
29 | username: johnsen
30 | repository: https://github.com/JohnsenZhou/Xanadu
31 | score: 0.4476273289720075
32 | stars: 0
33 | unstable: true
34 | version: 0.1.5
35 | watchers: 0
36 |
37 | ---
38 |
39 | # XANADU
40 |
41 | The road of a front-end development.
42 |
43 | Together with me.
44 |
45 | Fighting!
46 |
--------------------------------------------------------------------------------
/content/plugins/@pengzhanbo-vuepress-plugin-caniuse.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: pengzhanbo
6 | url: null
7 | username: null
8 | bugs: https://github.com/pengzhanbo/vuepress-plugin-caniuse/issues
9 | category: plugins
10 | date: '2022-04-03T21:06:10.909Z'
11 | deprecated: false
12 | description: vuepress2.x plugin, support can-I-use container for markdown
13 | downloads: null
14 | homepage: https://github.com/pengzhanbo/vuepress-plugin-caniuse
15 | keywords:
16 | - vuepress-next
17 | - vuepress
18 | - vuepress-plugin
19 | - vuepress-plugin-caniuse
20 | - can I use
21 | license: null
22 | maintainers: null
23 | name: '@pengzhanbo/vuepress-plugin-caniuse'
24 | npm: https://www.npmjs.com/package/%40pengzhanbo%2Fvuepress-plugin-caniuse
25 | publisher:
26 | avatar: null
27 | email: volodymyr@foxmail.com
28 | name: null
29 | url: null
30 | username: pengzhanbo
31 | repository: https://github.com/pengzhanbo/vuepress-plugin-caniuse
32 | score: 0.5163411251492763
33 | stars: 0
34 | unstable: false
35 | version: 1.0.2
36 | watchers: 0
37 |
38 | ---
39 |
40 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-mermaidjs-next.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/26138771?v=4
4 | email: wn0x01@gmail.com
5 | name: null
6 | url: null
7 | username: wn0x00
8 | bugs: https://github.com/wo-ni/vuepress-plugin-mermaidjs-next/issues
9 | category: plugins
10 | date: '2021-12-21T13:46:23.154Z'
11 | deprecated: false
12 | description: A plugin for adding Mermaid to VuePress 2.X
13 | downloads: null
14 | homepage: https://github.com/wo-ni/vuepress-plugin-mermaidjs-next#readme
15 | keywords:
16 | - vue
17 | - vuepress
18 | - vuepress-plugin
19 | - mermaid
20 | license: MIT License
21 | maintainers: null
22 | name: vuepress-plugin-mermaidjs-next
23 | npm: https://www.npmjs.com/package/vuepress-plugin-mermaidjs-next
24 | publisher:
25 | avatar: null
26 | email: 320753691@qq.com
27 | name: null
28 | url: null
29 | username: wn0x01
30 | repository: https://github.com/wo-ni/vuepress-plugin-mermaidjs-next
31 | score: 0.43930659229768537
32 | stars: 0
33 | unstable: true
34 | version: 0.0.11
35 | watchers: 0
36 |
37 | ---
38 |
39 | # 测试
40 |
41 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-asshole.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/43257350?v=4
4 | email: willin@willin.org
5 | name: willin
6 | url: null
7 | username: willin
8 | bugs: https://github.com/assholev0/vuepress-theme-asshole/issues
9 | category: themes
10 | date: '2018-09-18T08:37:37.690Z'
11 | deprecated: false
12 | description: A Vuepress Theme for assholev0
13 | downloads: null
14 | homepage: https://github.com/assholev0/vuepress-theme-asshole#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | license: MIT License
19 | maintainers: null
20 | name: vuepress-theme-asshole
21 | npm: https://www.npmjs.com/package/vuepress-theme-asshole
22 | publisher:
23 | avatar: null
24 | email: willin@willin.org
25 | name: null
26 | url: null
27 | username: willin
28 | repository: https://github.com/assholev0/vuepress-theme-asshole
29 | score: 0.41163369911576697
30 | stars: 0
31 | unstable: true
32 | version: 0.0.0-alpha0-20180918
33 | watchers: 0
34 |
35 | ---
36 |
37 | # Vuepress Theme - AssholeV0
38 |
39 | See demo on
40 |
41 |
--------------------------------------------------------------------------------
/content/plugins/bartr-vuepress-plugin-flexsearch.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: bart.renders@infosupport.com
5 | name: BartR96
6 | url: null
7 | username: bart-renders
8 | bugs: https://github.com/BartR96/vuepress-plugin-flexsearch/issues
9 | category: plugins
10 | date: '2020-04-17T07:51:07.684Z'
11 | deprecated: false
12 | description: Next-Generation full text search library for Vuepress
13 | downloads: null
14 | homepage: https://github.com/BartR96/vuepress-plugin-flexsearch
15 | keywords:
16 | - documentation
17 | - vue
18 | - vuepress
19 | - generator
20 | - search
21 | - vuepress-plugin
22 | license: null
23 | maintainers: null
24 | name: bartr-vuepress-plugin-flexsearch
25 | npm: https://www.npmjs.com/package/bartr-vuepress-plugin-flexsearch
26 | publisher:
27 | avatar: null
28 | email: bart.renders@infosupport.com
29 | name: null
30 | url: null
31 | username: bart-renders
32 | repository: https://github.com/BartR96/vuepress-plugin-flexsearch
33 | score: 0.04151583857177385
34 | stars: 0
35 | unstable: true
36 | version: 0.0.2
37 | watchers: 0
38 |
39 | ---
40 |
41 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-git-contributor.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/19400528?v=4
4 | email: null
5 | name: xieyx
6 | url: null
7 | username: xieyx
8 | bugs: https://github.com/xieyx/vuepress-plugin-git-contributor/issues
9 | category: plugins
10 | date: '2020-06-09T10:53:20.658Z'
11 | deprecated: false
12 | description: '> git contributor plugin for VuePress'
13 | downloads: null
14 | homepage: https://github.com/xieyx/vuepress-plugin-git-contributor#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-plugin-git-contributor
19 | npm: https://www.npmjs.com/package/vuepress-plugin-git-contributor
20 | publisher:
21 | avatar: null
22 | email: xieyanxin93@gmail.com
23 | name: null
24 | url: null
25 | username: xieyx
26 | repository: https://github.com/xieyx/vuepress-plugin-git-contributor
27 | score: 0.43147759304349176
28 | stars: 1
29 | unstable: false
30 | version: 1.1.1
31 | watchers: 1
32 |
33 | ---
34 |
35 | # vuepress-plugin-git-contributor
36 |
37 | > git contributor plugin for VuePress
38 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-export-pdf.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/13484877?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: eamiear
8 | bugs: https://github.com/eamiear/vuepress-plugin-export-pdf/issues
9 | category: plugins
10 | date: '2020-11-24T01:43:32.591Z'
11 | deprecated: false
12 | description: export pdf
13 | downloads: null
14 | homepage: https://github.com/eamiear/vuepress-plugin-export-pdf#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-plugin-export-pdf
19 | npm: https://www.npmjs.com/package/vuepress-plugin-export-pdf
20 | publisher:
21 | avatar: null
22 | email: justcall_me_k@163.com
23 | name: null
24 | url: null
25 | username: eamiear
26 | repository: https://github.com/eamiear/vuepress-plugin-export-pdf
27 | score: 0.4462282684526643
28 | stars: 0
29 | unstable: false
30 | version: 1.0.2
31 | watchers: 0
32 |
33 | ---
34 |
35 |
36 | # vuepress-plugin-export-pdf
37 |
38 | 按文件序号导出合成PDF文件
39 |
40 | 修改自 [vuepress-plugin-export](https://github.com/ulivz/vuepress-plugin-export)
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-yobrave.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/20272484?v=4
4 | email: null
5 | name: chinanf-boy
6 | url: null
7 | username: chinanf-boy
8 | bugs: https://github.com/chinanf-boy/vuepress-theme-yobrave/issues
9 | category: themes
10 | date: '2018-07-13T08:46:08.293Z'
11 | deprecated: false
12 | description: yobrave {me} vuepress theme
13 | downloads: null
14 | homepage: https://github.com/chinanf-boy/vuepress-theme-yobrave#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | license: false
19 | maintainers: null
20 | name: vuepress-theme-yobrave
21 | npm: https://www.npmjs.com/package/vuepress-theme-yobrave
22 | publisher:
23 | avatar: null
24 | email: yobrave@outlook.com
25 | name: null
26 | url: null
27 | username: yobrave1995
28 | repository: https://github.com/chinanf-boy/vuepress-theme-yobrave
29 | score: 0.4302054522556132
30 | stars: 0
31 | unstable: false
32 | version: 1.0.0
33 | watchers: 0
34 |
35 | ---
36 |
37 | # vuepress-theme-yobarve
38 |
39 | 「 Copy from vuepress-theme-vue theme , but remove abs」
40 |
41 |
42 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-janitor.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/4836334?v=4
4 | email: bencodezen@gmail.com
5 | name: Ben Hong
6 | url: null
7 | username: bencodezen
8 | bugs: https://github.com/bencodezen/vuepress-plugin-janitor/issues
9 | category: plugins
10 | date: '2019-01-10T03:12:15.660Z'
11 | deprecated: false
12 | description: Helps clean up build files from VuePress
13 | downloads: null
14 | homepage: https://github.com/bencodezen/vuepress-plugin-janitor#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-plugin-janitor
19 | npm: https://www.npmjs.com/package/vuepress-plugin-janitor
20 | publisher:
21 | avatar: null
22 | email: bencodezen@gmail.com
23 | name: null
24 | url: null
25 | username: bencodezen
26 | repository: https://github.com/bencodezen/vuepress-plugin-janitor
27 | score: 0.2683405507219329
28 | stars: 1
29 | unstable: false
30 | version: 1.0.0
31 | watchers: 1
32 |
33 | ---
34 |
35 | # VuePress Plugin Janitor
36 |
37 | Cleans up your build files after you've finished generating them
38 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-neptune.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/149564?v=4
4 | email: null
5 | name: Tookit
6 | url: Michael Wang
7 | username: tookit
8 | bugs: https://github.com/tookit/vuepress-theme-neptune/issues
9 | category: themes
10 | date: '2020-09-21T13:53:25.619Z'
11 | deprecated: false
12 | description: "Neptune theme for VuePress\u3002"
13 | downloads: null
14 | homepage: https://github.com/tookit/vuepress-theme-neptune#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-neptune
19 | npm: https://www.npmjs.com/package/vuepress-theme-neptune
20 | publisher:
21 | avatar: null
22 | email: wangqiangshen@gmail.com
23 | name: null
24 | url: null
25 | username: skingwang
26 | repository: https://github.com/tookit/vuepress-theme-neptune
27 | score: 0.4106864512853312
28 | stars: 3
29 | unstable: false
30 | version: 1.1.4
31 | watchers: 3
32 |
33 | ---
34 |
35 | # blog
36 | Tookit's personal blog
37 |
38 | 
39 |
40 |
41 | [Demo](http://isocked.com/)
--------------------------------------------------------------------------------
/content/plugins/@starzkg-vuepress-plugin-baidu-analytics.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/62365720?v=4
4 | email: shentuzhigang@shentuzhigang.cn
5 | name: Starzkg
6 | url: https://shentuzhigang.cn
7 | username: roiding
8 | bugs: https://github.com/roiding/plugin-baidu-analytics/issues
9 | category: plugins
10 | date: '2021-11-16T09:35:08.330Z'
11 | deprecated: false
12 | description: VuePress plugin - baidu-analytics
13 | downloads: null
14 | homepage: https://github.com/roiding
15 | keywords:
16 | - vuepress-plugin
17 | - vuepress
18 | - plugin
19 | - baidu
20 | - analytics
21 | license: false
22 | maintainers: null
23 | name: '@starzkg/vuepress-plugin-baidu-analytics'
24 | npm: https://www.npmjs.com/package/%40starzkg%2Fvuepress-plugin-baidu-analytics
25 | publisher:
26 | avatar: null
27 | email: shentuzhigang@qq.com
28 | name: null
29 | url: null
30 | username: starzkg
31 | repository: https://github.com/roiding/plugin-baidu-analytics
32 | score: 0.1576499507791642
33 | stars: 0
34 | unstable: true
35 | version: 1.0.0-beta.16
36 | watchers: 0
37 |
38 | ---
39 |
40 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-directory-classifier.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/13609768?v=4
4 | email: sabic.alija@gmail.com
5 | name: Alija Sabic
6 | url: null
7 | username: alija
8 | bugs: https://github.com/sabicalija/vuepress-plugins/issues
9 | category: plugins
10 | date: '2020-04-23T22:29:12.784Z'
11 | deprecated: false
12 | description: VuePress plugin for directory based classification
13 | downloads: null
14 | homepage: https://github.com/sabicalija/vuepress-plugins#readme
15 | keywords:
16 | - documentation
17 | - vue
18 | - vuepress
19 | - generator
20 | - directory
21 | - classifier
22 | license: false
23 | maintainers: null
24 | name: vuepress-plugin-directory-classifier
25 | npm: https://www.npmjs.com/package/vuepress-plugin-directory-classifier
26 | publisher:
27 | avatar: null
28 | email: sabic.alija@gmail.com
29 | name: null
30 | url: null
31 | username: alija
32 | repository: https://github.com/sabicalija/vuepress-plugins
33 | score: 0.3001032846224886
34 | stars: 0
35 | unstable: true
36 | version: 0.1.0
37 | watchers: 0
38 |
39 | ---
40 |
41 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-jsdelivr-cdn.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12797966?v=4
4 | email: a495008890@live.com
5 | name: gezihuzi
6 | url: null
7 | username: gezihuzi
8 | bugs: https://github.com/gezihuzi/vuepress-plugin-jsdelivr-cdn/issues
9 | category: plugins
10 | date: '2020-12-21T15:48:49.927Z'
11 | deprecated: false
12 | description: jsdelivr-cdn plugin for vuepress
13 | downloads: null
14 | homepage: https://github.com/gezihuzi/vuepress-plugin-jsdelivr-cdn#readme
15 | keywords:
16 | - documentation
17 | - generator
18 | - vue
19 | - vuepress
20 | - jsdelivr
21 | - cdn
22 | license: MIT License
23 | maintainers: null
24 | name: vuepress-plugin-jsdelivr-cdn
25 | npm: https://www.npmjs.com/package/vuepress-plugin-jsdelivr-cdn
26 | publisher:
27 | avatar: null
28 | email: a495008890@live.com
29 | name: null
30 | url: null
31 | username: gezihuzi
32 | repository: https://github.com/gezihuzi/vuepress-plugin-jsdelivr-cdn
33 | score: 0.45540554446816
34 | stars: 0
35 | unstable: true
36 | version: 0.0.8
37 | watchers: 0
38 |
39 | ---
40 |
41 | # plugin-jsdelivr-cdn
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-flexsearch-guidance-tooling.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: bart.renders@infosupport.com
5 | name: BartR96
6 | url: null
7 | username: bart-renders
8 | bugs: https://github.com/BartR96/vuepress-plugin-flexsearch/issues
9 | category: plugins
10 | date: '2020-04-17T09:58:39.886Z'
11 | deprecated: false
12 | description: Next-Generation full text search library for Vuepress
13 | downloads: null
14 | homepage: https://github.com/BartR96/vuepress-plugin-flexsearch
15 | keywords:
16 | - documentation
17 | - vue
18 | - vuepress
19 | - generator
20 | - search
21 | - vuepress-plugin
22 | license: null
23 | maintainers: null
24 | name: vuepress-plugin-flexsearch-guidance-tooling
25 | npm: https://www.npmjs.com/package/vuepress-plugin-flexsearch-guidance-tooling
26 | publisher:
27 | avatar: null
28 | email: bart.renders@infosupport.com
29 | name: null
30 | url: null
31 | username: bart-renders
32 | repository: https://github.com/BartR96/vuepress-plugin-flexsearch
33 | score: 0.42812549095013036
34 | stars: 0
35 | unstable: false
36 | version: 1.0.1
37 | watchers: 0
38 |
39 | ---
40 |
41 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-google-gtag.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/15811268?v=4
4 | email: scope.wu@gmail.com
5 | name: scope.wu
6 | url: null
7 | username: scopewu
8 | bugs: https://github.com/scopewu/vuepress/issues
9 | category: plugins
10 | date: '2019-06-16T13:45:32.024Z'
11 | deprecated: false
12 | description: google global site tag(gtag.js) plugin for vuepress
13 | downloads: null
14 | homepage: https://github.com/scopewu/vuepress/tree/master/packages/vuepress-plugin-google-gtag
15 | keywords:
16 | - vue
17 | - vuepress
18 | - generator
19 | - google gtag
20 | - gtag
21 | license: MIT License
22 | maintainers: null
23 | name: vuepress-plugin-google-gtag
24 | npm: https://www.npmjs.com/package/vuepress-plugin-google-gtag
25 | publisher:
26 | avatar: null
27 | email: scopewu@gmail.com
28 | name: null
29 | url: null
30 | username: scopewu
31 | repository: https://github.com/scopewu/vuepress
32 | score: 0.45908878045779167
33 | stars: 2
34 | unstable: false
35 | version: 1.0.1
36 | watchers: 2
37 |
38 | ---
39 |
40 | # vuepress
41 | The theme and plugin for vuepress.
42 |
--------------------------------------------------------------------------------
/content/themes/ahmader-vuepress-theme.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/2225278?v=4
4 | email: ahmader@gmail.com
5 | name: ahmader
6 | url: null
7 | username: ahmader
8 | bugs: https://github.com/ahmader/vuepress-theme/issues
9 | category: themes
10 | date: '2020-09-14T21:37:16.946Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/ahmader/vuepress-theme#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: ahmader-vuepress-theme
19 | npm: https://www.npmjs.com/package/ahmader-vuepress-theme
20 | publisher:
21 | avatar: null
22 | email: ahmader@gmail.com
23 | name: null
24 | url: null
25 | username: ahmader
26 | repository: https://github.com/ahmader/vuepress-theme
27 | score: 0.31774962344543617
28 | stars: 0
29 | unstable: false
30 | version: 1.0.2
31 | watchers: 0
32 |
33 | ---
34 |
35 | # Ahmader VuePress Theme
36 |
37 | ## Install
38 | ```
39 | yarn install
40 | ```
41 |
42 | ## Usage
43 | ```
44 | // .vuepress/config.js
45 | module.exports = {
46 | theme: 'vuepress-theme-ahmader'
47 | }
48 | ```
49 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-cloudlinux.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/6078720?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: npm
8 | bugs: https://github.com/npm/security-holder/issues
9 | category: themes
10 | date: '2021-11-29T15:26:11.031Z'
11 | deprecated: false
12 | description: security holding package
13 | downloads: null
14 | homepage: https://github.com/npm/security-holder#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-cloudlinux
19 | npm: https://www.npmjs.com/package/vuepress-theme-cloudlinux
20 | publisher:
21 | avatar: null
22 | email: npm@npmjs.com
23 | name: null
24 | url: null
25 | username: npm
26 | repository: https://github.com/npm/security-holder
27 | score: 0.118419785288133
28 | stars: 161
29 | unstable: true
30 | version: 0.0.1-security.5
31 | watchers: 161
32 |
33 | ---
34 |
35 | # Security holding package
36 |
37 | This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
38 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-vuejs-berlin.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/45715831?v=4
4 | email: n@koehr.in
5 | name: koehr
6 | url: null
7 | username: VuejsBerlin
8 | bugs: https://github.com/nkoehring/vuepress-theme-vuejs-berlin/issues
9 | category: themes
10 | date: '2018-07-19T19:15:25.042Z'
11 | deprecated: false
12 | description: Theme for vuejs.berlin
13 | downloads: null
14 | homepage: https://github.com/nkoehring/vuepress-theme-vuejs-berlin#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-vuejs-berlin
19 | npm: https://www.npmjs.com/package/vuepress-theme-vuejs-berlin
20 | publisher:
21 | avatar: null
22 | email: norman.koehring@fromatob.com
23 | name: null
24 | url: null
25 | username: koehr
26 | repository: https://github.com/nkoehring/vuepress-theme-vuejs-berlin
27 | score: 0.4023433891766869
28 | stars: 0
29 | unstable: true
30 | version: 0.1.2
31 | watchers: 0
32 |
33 | ---
34 |
35 | VuePress theme for https://vuejs.berlin
36 |
37 | See [vuepress guide](https://vuepress.vuejs.org/guide/custom-themes.html) for details.
38 |
--------------------------------------------------------------------------------
/content/plugins/@jinhang-vuepress-plugin-cnzz.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/13505593?v=4
4 | email: null
5 | name: jinhang
6 | url: null
7 | username: jinhang87
8 | bugs: https://github.com/jinhang87/vuepress-plugin-cnzz/issues
9 | category: plugins
10 | date: '2021-11-02T16:49:40.988Z'
11 | deprecated: false
12 | description: VuePress plugin - cnzz-analytics
13 | downloads: null
14 | homepage: https://github.com/jinhang87/vuepress-plugin-cnzz
15 | keywords:
16 | - vuepress-plugin
17 | - vuepress
18 | - plugin
19 | - cnzz
20 | - analytics
21 | license: MIT License
22 | maintainers: null
23 | name: '@jinhang/vuepress-plugin-cnzz'
24 | npm: https://www.npmjs.com/package/%40jinhang%2Fvuepress-plugin-cnzz
25 | publisher:
26 | avatar: null
27 | email: jinhang87@163.com
28 | name: null
29 | url: null
30 | username: jinhang
31 | repository: https://github.com/jinhang87/vuepress-plugin-cnzz
32 | score: 0.4340817998860178
33 | stars: 0
34 | unstable: true
35 | version: 1.0.0-beta.3
36 | watchers: 0
37 |
38 | ---
39 |
40 | # vuepress-plugin-cnzz
41 | A VuePress(2.x) plugin to use cnzz easily.
42 |
--------------------------------------------------------------------------------
/content/themes/@webreadyprojects-vuepress-theme-wrprojects.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: gfavreau.wrprojects@gmail.com
5 | name: Gregoire Favreau
6 | url: null
7 | username: gregoiref
8 | bugs: https://github.com/WebReadyProjects/vuepress-theme-wrprojects/issues
9 | category: themes
10 | date: '2021-12-13T19:43:23.068Z'
11 | deprecated: false
12 | description: "\U0001F526 Commitizen adapter for WebReady Projects following the conventional-changelog\
13 | \ format."
14 | downloads: null
15 | homepage: https://github.com/WebReadyProjects/vuepress-theme-wrprojects#readme
16 | keywords: null
17 | license: null
18 | maintainers: null
19 | name: '@webreadyprojects/vuepress-theme-wrprojects'
20 | npm: https://www.npmjs.com/package/%40webreadyprojects%2Fvuepress-theme-wrprojects
21 | publisher:
22 | avatar: null
23 | email: gfavreau.wrprojects@gmail.com
24 | name: null
25 | url: null
26 | username: gregoiref
27 | repository: https://github.com/WebReadyProjects/vuepress-theme-wrprojects
28 | score: 0.3145368865224354
29 | stars: 0
30 | unstable: true
31 | version: 0.0.3-tesaa
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-page-locale.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/2761281?v=4
4 | email: brandon.liles@gmail.com
5 | name: Brandon Liles
6 | url: null
7 | username: bliles
8 | bugs: https://github.com/bliles/vuepress-page-locale/issues
9 | category: plugins
10 | date: '2019-08-20T20:12:43.816Z'
11 | deprecated: false
12 | description: Vuepress plugin to add page locale to the page data
13 | downloads: null
14 | homepage: https://github.com/bliles/vuepress-page-locale#readme
15 | keywords:
16 | - vue
17 | - vuepress
18 | - generator
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-plugin-page-locale
22 | npm: https://www.npmjs.com/package/vuepress-plugin-page-locale
23 | publisher:
24 | avatar: null
25 | email: brandon.liles@gmail.com
26 | name: null
27 | url: null
28 | username: bliles
29 | repository: https://github.com/bliles/vuepress-page-locale
30 | score: 0.4305151248707871
31 | stars: 0
32 | unstable: false
33 | version: 1.0.0
34 | watchers: 0
35 |
36 | ---
37 |
38 | # Vuepress Page Locale
39 |
40 | Adds the page locale as a property of the page data.
41 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-dog.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/19198355?v=4
4 | email: null
5 | name: artiely
6 | url: null
7 | username: artiely
8 | bugs: https://github.com/artiely/vuepress-theme-dog/issues
9 | category: themes
10 | date: '2022-03-01T02:48:57.454Z'
11 | deprecated: false
12 | description: a vuepress blog theme
13 | downloads: null
14 | homepage: https://github.com/artiely/vuepress-theme-dog#readme
15 | keywords:
16 | - vuepress-theme
17 | - vuepress-theme-blog
18 | - vuepress@next
19 | - vuepress2
20 | - vuepress-theme-dog
21 | license: MIT License
22 | maintainers: null
23 | name: vuepress-theme-dog
24 | npm: https://www.npmjs.com/package/vuepress-theme-dog
25 | publisher:
26 | avatar: null
27 | email: 1119696785@qq.com
28 | name: null
29 | url: null
30 | username: artiely
31 | repository: https://github.com/artiely/vuepress-theme-dog
32 | score: 0.46275032004125816
33 | stars: 1
34 | unstable: true
35 | version: 1.0.0-beta.38
36 | watchers: 1
37 |
38 | ---
39 |
40 | # 这是一款自以为是的vuepress@next博客主题
41 |
42 | 
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-china-search-console.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: zhengqbbb@gmail.com
5 | name: zhengqbbb
6 | url: null
7 | username: null
8 | bugs: https://github.com/Zhengqbbb/zhengqbbb.github.io/issues
9 | category: plugins
10 | date: '2022-05-28T06:26:52.748Z'
11 | deprecated: false
12 | description: VuePress plugin - China search console
13 | downloads: null
14 | homepage: https://www.qbenben.com/docs/play/vuepress-plugin-china-search-console.html
15 | keywords:
16 | - vuepress-plugin
17 | - baidu-tongji
18 | - vuepress2
19 | - vuepress2-plugin
20 | - baidu-analytics
21 | - baidu-auto-push
22 | - 360-auto-push
23 | - analytics
24 | license: null
25 | maintainers: null
26 | name: vuepress-plugin-china-search-console
27 | npm: https://www.npmjs.com/package/vuepress-plugin-china-search-console
28 | publisher:
29 | avatar: null
30 | email: 1074059947@qq.com
31 | name: null
32 | url: null
33 | username: zhengqbbb
34 | repository: https://github.com/Zhengqbbb/zhengqbbb.github.io/tree/main
35 | score: 0.496774449683001
36 | stars: 0
37 | unstable: false
38 | version: 2.1.1
39 | watchers: 0
40 |
41 | ---
42 |
43 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-flexsearch-plus.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: admin@bajins.com
5 | name: Bajins
6 | url: https://github.com/bajins
7 | username: null
8 | bugs: https://github.com/bajins/vuepress-plugin-flexsearch-plus/issues
9 | category: plugins
10 | date: '2021-07-09T03:01:38.666Z'
11 | deprecated: false
12 | description: Next-Generation full text search library for Vuepress
13 | downloads: null
14 | homepage: https://github.com/bajins/vuepress-plugin-flexsearch-plus#readme
15 | keywords:
16 | - vuepress-plugin-flexsearch-plus
17 | - vuepress-plugin-flexsearch
18 | - vuepress-search
19 | - search
20 | - vuepress-plugin
21 | - vuepress
22 | license: null
23 | maintainers: null
24 | name: vuepress-plugin-flexsearch-plus
25 | npm: https://www.npmjs.com/package/vuepress-plugin-flexsearch-plus
26 | publisher:
27 | avatar: null
28 | email: clater.bajins@gmail.com
29 | name: null
30 | url: null
31 | username: bajins
32 | repository: https://github.com/bajins/vuepress-plugin-flexsearch-plus
33 | score: 0.46988574956253304
34 | stars: 0
35 | unstable: true
36 | version: 0.2.1
37 | watchers: 0
38 |
39 | ---
40 |
41 |
--------------------------------------------------------------------------------
/content/themes/@studyathome-internationally-vuepress-theme-hub.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/54356406?v=4
4 | email: sabic@technikum-wien.at
5 | name: Alija Sabic
6 | url: null
7 | username: studyathome-internationally
8 | bugs: https://github.com/studyathome-internationally/hub.js/issues
9 | category: themes
10 | date: '2022-06-02T21:12:53.844Z'
11 | deprecated: false
12 | description: Vuepress theme for StudyATHome Internationally eLearning Sharing & Virtual
13 | Project Teams Hub
14 | downloads: null
15 | homepage: https://github.com/studyathome-internationally/hub.js#readme
16 | keywords: null
17 | license: false
18 | maintainers: null
19 | name: '@studyathome-internationally/vuepress-theme-hub'
20 | npm: https://www.npmjs.com/package/%40studyathome-internationally%2Fvuepress-theme-hub
21 | publisher:
22 | avatar: null
23 | email: sabic.alija@gmail.com
24 | name: null
25 | url: null
26 | username: alija
27 | repository: https://github.com/studyathome-internationally/hub.js
28 | score: 0.36618750688655044
29 | stars: 0
30 | unstable: false
31 | version: 1.3.1
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/plugins/@zolyn-vuepress-plugin-rightmenu.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: Zorin
6 | url: null
7 | username: null
8 | bugs: https://github.com/Zolyn/vuepress-plugin-rightmenu/issues
9 | category: plugins
10 | date: '2021-06-12T07:28:06.330Z'
11 | deprecated: false
12 | description: '[](https://npmjs.com/package/@zolyn/vuepress-plugin-rightmenu)
13 | [](https://n'
14 | downloads: null
15 | homepage: https://github.com/Zolyn/vuepress-plugin-rightmenu#readme
16 | keywords: null
17 | license: null
18 | maintainers: null
19 | name: '@zolyn/vuepress-plugin-rightmenu'
20 | npm: https://www.npmjs.com/package/%40zolyn%2Fvuepress-plugin-rightmenu
21 | publisher:
22 | avatar: null
23 | email: pikasama@qq.com
24 | name: null
25 | url: null
26 | username: zolyn
27 | repository: https://github.com/Zolyn/vuepress-plugin-rightmenu
28 | score: 0.4752851711916342
29 | stars: 0
30 | unstable: false
31 | version: 1.1.0
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-ahmader.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/2225278?v=4
4 | email: ahmader@gmail.com
5 | name: ahmader
6 | url: null
7 | username: ahmader
8 | bugs: https://github.com/ahmader/vuepress-theme/issues
9 | category: themes
10 | date: '2020-09-15T16:18:39.251Z'
11 | deprecated: false
12 | description: '## Install ``` yarn install ```'
13 | downloads: null
14 | homepage: https://github.com/ahmader/vuepress-theme#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-theme-ahmader
19 | npm: https://www.npmjs.com/package/vuepress-theme-ahmader
20 | publisher:
21 | avatar: null
22 | email: ahmader@gmail.com
23 | name: null
24 | url: null
25 | username: ahmader
26 | repository: https://github.com/ahmader/vuepress-theme
27 | score: 0.4220258576677014
28 | stars: 0
29 | unstable: false
30 | version: 1.0.9
31 | watchers: 0
32 |
33 | ---
34 |
35 | # Ahmader VuePress Theme
36 |
37 | ## Install
38 | ```
39 | yarn install
40 | ```
41 |
42 | ## Usage
43 | ```
44 | // .vuepress/config.js
45 | module.exports = {
46 | theme: 'vuepress-theme-ahmader'
47 | }
48 | ```
49 |
--------------------------------------------------------------------------------
/components/card.vue:
--------------------------------------------------------------------------------
1 |
2 |
9 |
17 | {{ icon }}
18 |
19 |
22 | {{ title }}
23 |
24 |
25 |
26 | {{ description }}
27 |
28 |
29 |
30 |
31 |
32 |
54 |
--------------------------------------------------------------------------------
/content/plugins/@studyathome-internationally-vuepress-plugin-hub.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/54356406?v=4
4 | email: sabic@technikum-wien.at
5 | name: Alija Sabic
6 | url: null
7 | username: studyathome-internationally
8 | bugs: https://github.com/studyathome-internationally/hub.js/issues
9 | category: plugins
10 | date: '2020-05-16T20:46:09.491Z'
11 | deprecated: false
12 | description: Vuepress plugin for StudyATHome Internationally eLearning Sharing & Virtual
13 | Project Teams Hub
14 | downloads: null
15 | homepage: https://github.com/studyathome-internationally/hub.js#readme
16 | keywords: null
17 | license: false
18 | maintainers: null
19 | name: '@studyathome-internationally/vuepress-plugin-hub'
20 | npm: https://www.npmjs.com/package/%40studyathome-internationally%2Fvuepress-plugin-hub
21 | publisher:
22 | avatar: null
23 | email: sabic.alija@gmail.com
24 | name: null
25 | url: null
26 | username: alija
27 | repository: https://github.com/studyathome-internationally/hub.js
28 | score: 0.24925588196791917
29 | stars: 0
30 | unstable: true
31 | version: 1.0.0-beta.0
32 | watchers: 0
33 |
34 | ---
35 |
36 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-references.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/54356406?v=4
4 | email: sabic.alija@gmail.com
5 | name: Alija Sabic
6 | url: null
7 | username: alija
8 | bugs: https://github.com/studyathome-internationally/vuepress-plugins/issues
9 | category: plugins
10 | date: '2021-07-22T19:15:22.504Z'
11 | deprecated: false
12 | description: Vuepress plugin for (ordered) referencing (of images, tables, etc.).
13 | downloads: null
14 | homepage: https://github.com/studyathome-internationally/vuepress-plugins#readme
15 | keywords:
16 | - vuepress
17 | - plugin
18 | - markdown
19 | - reference
20 | license: GNU General Public License v3.0
21 | maintainers: null
22 | name: vuepress-plugin-references
23 | npm: https://www.npmjs.com/package/vuepress-plugin-references
24 | publisher:
25 | avatar: null
26 | email: sabic.alija@gmail.com
27 | name: null
28 | url: null
29 | username: alija
30 | repository: https://github.com/studyathome-internationally/vuepress-plugins
31 | score: 0.17895134871086943
32 | stars: 0
33 | unstable: false
34 | version: 2.1.0-alpha.3
35 | watchers: 0
36 |
37 | ---
38 |
39 | # vuepress-plugins
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-table-references.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/54356406?v=4
4 | email: sabic.alija@gmail.com
5 | name: Alija Sabic
6 | url: null
7 | username: alija
8 | bugs: https://github.com/studyathome-internationally/vuepress-plugins/issues
9 | category: plugins
10 | date: '2021-07-22T19:15:18.025Z'
11 | deprecated: false
12 | description: VuePress plugin for table references
13 | downloads: null
14 | homepage: https://github.com/studyathome-internationally/vuepress-plugins#readme
15 | keywords:
16 | - vuepress
17 | - plugin
18 | - markdown
19 | - table
20 | - reference
21 | license: GNU General Public License v3.0
22 | maintainers: null
23 | name: vuepress-plugin-table-references
24 | npm: https://www.npmjs.com/package/vuepress-plugin-table-references
25 | publisher:
26 | avatar: null
27 | email: sabic.alija@gmail.com
28 | name: null
29 | url: null
30 | username: alija
31 | repository: https://github.com/studyathome-internationally/vuepress-plugins
32 | score: 0.17883866771647683
33 | stars: 0
34 | unstable: false
35 | version: 2.1.0-alpha.3
36 | watchers: 0
37 |
38 | ---
39 |
40 | # vuepress-plugins
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-figure-references.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/54356406?v=4
4 | email: sabic.alija@gmail.com
5 | name: Alija Sabic
6 | url: null
7 | username: alija
8 | bugs: https://github.com/studyathome-internationally/vuepress-plugins/issues
9 | category: plugins
10 | date: '2021-07-22T19:15:18.573Z'
11 | deprecated: false
12 | description: VuePress plugin for figure references
13 | downloads: null
14 | homepage: https://github.com/studyathome-internationally/vuepress-plugins#readme
15 | keywords:
16 | - vuepress
17 | - plugin
18 | - markdown
19 | - figure
20 | - reference
21 | license: GNU General Public License v3.0
22 | maintainers: null
23 | name: vuepress-plugin-figure-references
24 | npm: https://www.npmjs.com/package/vuepress-plugin-figure-references
25 | publisher:
26 | avatar: null
27 | email: sabic.alija@gmail.com
28 | name: null
29 | url: null
30 | username: alija
31 | repository: https://github.com/studyathome-internationally/vuepress-plugins
32 | score: 0.1789222644311722
33 | stars: 0
34 | unstable: false
35 | version: 2.1.0-alpha.3
36 | watchers: 0
37 |
38 | ---
39 |
40 | # vuepress-plugins
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-gocommons.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/35213792?v=4
4 | email: null
5 | name: cperezcapote
6 | url: null
7 | username: cperezcapote
8 | bugs: https://github.com/cperezcapote/vuepress-theme-gocommons/issues
9 | category: themes
10 | date: '2019-04-12T05:58:23.274Z'
11 | deprecated: false
12 | description: A custom Vuepress theme for GO!Commons partners applications.
13 | downloads: null
14 | homepage: https://github.com/cperezcapote/vuepress-theme-gocommons#readme
15 | keywords:
16 | - vuepress
17 | - vuepress-theme
18 | - theme
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-theme-gocommons
22 | npm: https://www.npmjs.com/package/vuepress-theme-gocommons
23 | publisher:
24 | avatar: null
25 | email: cperezcapote@gmail.com
26 | name: null
27 | url: null
28 | username: cperezcapote
29 | repository: https://github.com/cperezcapote/vuepress-theme-gocommons
30 | score: 0.43769291361397833
31 | stars: 0
32 | unstable: false
33 | version: 1.0.6
34 | watchers: 0
35 |
36 | ---
37 |
38 | # vuepress-theme-gocommons
39 |
40 | A custom Vuepress theme for GO!Commons partner applications.
41 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-cyan.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/31116803?v=4
4 | email: null
5 | name: Cyan
6 | url: null
7 | username: CyanH
8 | bugs: https://github.com/CyanH/vuepress-theme-cyan/issues
9 | category: themes
10 | date: '2022-02-21T08:56:42.074Z'
11 | deprecated: false
12 | description: "\u5C0F\u6E05\u65B0\u770B\u677F\u5A18\u4E3B\u9898,\u57FA\u4E8Evuepress-theme-ting\u4FEE\
13 | \u6539"
14 | downloads: null
15 | homepage: https://github.com/CyanH/vuepress-theme-cyan#readme
16 | keywords:
17 | - vuepress
18 | - vuepress-Theme
19 | license: false
20 | maintainers: null
21 | name: vuepress-theme-cyan
22 | npm: https://www.npmjs.com/package/vuepress-theme-cyan
23 | publisher:
24 | avatar: null
25 | email: chenhaiyanccc@163.com
26 | name: null
27 | url: null
28 | username: muqingzi
29 | repository: https://github.com/CyanH/vuepress-theme-cyan
30 | score: 0.4399599607392143
31 | stars: 0
32 | unstable: false
33 | version: 1.0.11
34 | watchers: 0
35 |
36 | ---
37 |
38 | # vuepress-theme-cyan
39 | [github项目](https://github.com/CyanH/vuepress-theme-cyan)
40 | > 这是一个看板娘小清新vuepress主题,基于vuepress-theme-ting修改,主要满足自己使用啦(*/ω\*);
41 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-knowledge.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/43396646?v=4
4 | email: null
5 | name: ame
6 | url: null
7 | username: aimeiyijia
8 | bugs: https://github.com/aimeiyijia/vuepress-theme-knowledge/issues
9 | category: themes
10 | date: '2022-01-26T07:20:14.455Z'
11 | deprecated: false
12 | description: "knowledge theme for VuePress. \u4E00\u4E2A\u57FA\u4E8EVuePress\u7684\
13 | \u77E5\u8BC6\u5E93\u4E3B\u9898\u3002"
14 | downloads: null
15 | homepage: https://github.com/aimeiyijia/vuepress-theme-knowledge#readme
16 | keywords:
17 | - documentation
18 | - vue
19 | - vuepress
20 | - generator
21 | - theme
22 | - blog
23 | license: MIT License
24 | maintainers: null
25 | name: vuepress-theme-knowledge
26 | npm: https://www.npmjs.com/package/vuepress-theme-knowledge
27 | publisher:
28 | avatar: null
29 | email: 1456723200@qq.com
30 | name: null
31 | url: null
32 | username: true-ame
33 | repository: https://github.com/aimeiyijia/vuepress-theme-knowledge
34 | score: 0.15028088273196433
35 | stars: 0
36 | unstable: true
37 | version: 0.1.0
38 | watchers: 0
39 |
40 | ---
41 |
42 | # vuepress-theme-knowledge
43 | 博客主题
44 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-image-comparator.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/54356406?v=4
4 | email: sabic.alija@gmail.com
5 | name: Alija Sabic
6 | url: null
7 | username: alija
8 | bugs: https://github.com/studyathome-internationally/vuepress-plugins/issues
9 | category: plugins
10 | date: '2022-05-19T10:20:53.736Z'
11 | deprecated: false
12 | description: VuePress Plugin for image comparison
13 | downloads: null
14 | homepage: https://github.com/studyathome-internationally/vuepress-plugins#readme
15 | keywords:
16 | - vuepress-plugin
17 | - vuepress
18 | - plugin
19 | - markdown
20 | - image
21 | - comparison
22 | license: GNU General Public License v3.0
23 | maintainers: null
24 | name: vuepress-plugin-image-comparator
25 | npm: https://www.npmjs.com/package/vuepress-plugin-image-comparator
26 | publisher:
27 | avatar: null
28 | email: sabic.alija@gmail.com
29 | name: null
30 | url: null
31 | username: alija
32 | repository: https://github.com/studyathome-internationally/vuepress-plugins
33 | score: 0.4750816475304146
34 | stars: 0
35 | unstable: true
36 | version: 0.0.1-alpha.17
37 | watchers: 0
38 |
39 | ---
40 |
41 | # vuepress-plugins
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-lovetime.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12842804?v=4
4 | email: imwarn@163.com
5 | name: Warn
6 | url: null
7 | username: warn
8 | bugs: https://github.com/WangEn/vuepress-theme-lovetime/issues
9 | category: themes
10 | date: '2022-04-21T10:35:13.463Z'
11 | deprecated: false
12 | description: "lovetime\u81EA\u5B9A\u4E49\u4E3B\u9898"
13 | downloads: null
14 | homepage: https://github.com/WangEn/vuepress-theme-lovetime#readme
15 | keywords: null
16 | license: Apache License 2.0
17 | maintainers: null
18 | name: vuepress-theme-lovetime
19 | npm: https://www.npmjs.com/package/vuepress-theme-lovetime
20 | publisher:
21 | avatar: null
22 | email: imwarn@163.com
23 | name: null
24 | url: null
25 | username: warn
26 | repository: https://github.com/WangEn/vuepress-theme-lovetime
27 | score: 0.031534506429580174
28 | stars: 0
29 | unstable: true
30 | version: 0.0.1
31 | watchers: 0
32 |
33 | ---
34 |
35 | # vuepress-theme-lovetime
36 |
37 | ## 快速开始
38 | ### npm
39 |
40 | ``` javascript
41 | npm install vuepress-theme-lovetime
42 | ```
43 |
44 | ### yarn
45 | ``` javascript
46 | yarn add vuepress-theme-lovetime
47 | ```
--------------------------------------------------------------------------------
/content/plugins/vue-cli-plugin-vuepress.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/11334289?v=4
4 | email: dgpgdev@gmail.com
5 | name: Gauthier de Girodon Pralong
6 | url: null
7 | username: kronwald
8 | bugs: https://github.com/dgpgdev/vue-cli-plugin-vuepress/issues
9 | category: plugins
10 | date: '2018-10-05T10:32:16.254Z'
11 | deprecated: false
12 | description: null
13 | downloads: null
14 | homepage: https://github.com/dgpgdev/vue-cli-plugin-vuepress#readme
15 | keywords:
16 | - vuepress
17 | - vue
18 | - generator
19 | - plugin
20 | license: MIT License
21 | maintainers: null
22 | name: vue-cli-plugin-vuepress
23 | npm: https://www.npmjs.com/package/vue-cli-plugin-vuepress
24 | publisher:
25 | avatar: null
26 | email: dgpgdev@gmail.com
27 | name: null
28 | url: null
29 | username: kronwald
30 | repository: https://github.com/dgpgdev/vue-cli-plugin-vuepress
31 | score: 0.3145430371782979
32 | stars: 24
33 | unstable: true
34 | version: 0.1.1
35 | watchers: 24
36 |
37 | ---
38 |
39 | # vue-cli-plugin-vuepress
40 |
41 |
42 | [documentation](https://dgpgdev.github.io/vue-cli-plugin-vuepress/)
43 |
44 |
45 | [vuepress website](https://vuepress.vuejs.org)
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-sakura.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/26846090?v=4
4 | email: null
5 | name: Jin GaYe
6 | url: null
7 | username: RyanChent
8 | bugs: https://github.com/RyanChent/vuepress-theme-sakura/issues
9 | category: themes
10 | date: '2020-10-06T09:56:04.086Z'
11 | deprecated: false
12 | description: vuepress blog theme which name is sakura
13 | downloads: null
14 | homepage: https://github.com/RyanChent/vuepress-theme-sakura#readme
15 | keywords:
16 | - vuepress-theme-sakura
17 | - sakura
18 | - hexo-theme-sakura
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-theme-sakura
22 | npm: https://www.npmjs.com/package/vuepress-theme-sakura
23 | publisher:
24 | avatar: null
25 | email: jarrychen0329@gmail.com
26 | name: null
27 | url: null
28 | username: jingaye
29 | repository: https://github.com/RyanChent/vuepress-theme-sakura
30 | score: 0.4285998084035314
31 | stars: 3
32 | unstable: false
33 | version: 1.0.6
34 | watchers: 3
35 |
36 | ---
37 |
38 | ### Vuepress-theme-Sakura
39 |
40 | - 在线预览:[Demo](https://jarrychen.cn)
41 |
42 | - 配置文档:[Config.md](https://jarrychen.cn/category/frontend/vuepress-theme-sakura.html)
43 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-sidstraw-blog.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/37400982?v=4
4 | email: j80304xz@gmail.com
5 | name: SidStraw
6 | url: https://sidstraw.dev/
7 | username: sidstraw
8 | bugs: https://github.com/SidStraw/vuepress-theme-sidstraw-blog/issues
9 | category: themes
10 | date: '2020-06-01T12:30:03.582Z'
11 | deprecated: false
12 | description: SidStraw's blog theme for VuePress
13 | downloads: null
14 | homepage: https://github.com/SidStraw/vuepress-theme-sidstraw-blog#readme
15 | keywords:
16 | - vuepress
17 | - vuepress-theme
18 | - vuepress-blog
19 | - vuepress
20 | - vue
21 | - vuepress-theme-blog
22 | - vuepress-theme-sidstraw-blog
23 | license: MIT License
24 | maintainers: null
25 | name: vuepress-theme-sidstraw-blog
26 | npm: https://www.npmjs.com/package/vuepress-theme-sidstraw-blog
27 | publisher:
28 | avatar: null
29 | email: j80304xz@gmail.com
30 | name: null
31 | url: null
32 | username: sidstraw
33 | repository: https://github.com/SidStraw/vuepress-theme-sidstraw-blog
34 | score: 0.39106296307967425
35 | stars: 0
36 | unstable: true
37 | version: 0.1.0
38 | watchers: 0
39 |
40 | ---
41 |
42 | # vuepress-theme-sidstraw-blog
43 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-attribution-references.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/54356406?v=4
4 | email: sabic.alija@gmail.com
5 | name: Alija Sabic
6 | url: null
7 | username: alija
8 | bugs: https://github.com/studyathome-internationally/vuepress-plugins/issues
9 | category: plugins
10 | date: '2021-07-22T19:15:18.907Z'
11 | deprecated: false
12 | description: Vuepress plugin for attributions and attribution references
13 | downloads: null
14 | homepage: https://github.com/studyathome-internationally/vuepress-plugins#readme
15 | keywords:
16 | - vuepress
17 | - plugin
18 | - markdown
19 | - attribution
20 | - reference
21 | license: GNU General Public License v3.0
22 | maintainers: null
23 | name: vuepress-plugin-attribution-references
24 | npm: https://www.npmjs.com/package/vuepress-plugin-attribution-references
25 | publisher:
26 | avatar: null
27 | email: sabic.alija@gmail.com
28 | name: null
29 | url: null
30 | username: alija
31 | repository: https://github.com/studyathome-internationally/vuepress-plugins
32 | score: 0.17877474786697906
33 | stars: 0
34 | unstable: false
35 | version: 2.1.0-alpha.3
36 | watchers: 0
37 |
38 | ---
39 |
40 | # vuepress-plugins
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-pressdocs.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/237165?v=4
4 | email: efrane@meanderingsoul.com
5 | name: eFrane
6 | url: null
7 | username: eFrane
8 | bugs: https://github.com/eFrane/pressdocs/issues
9 | category: plugins
10 | date: '2021-02-01T16:19:02.595Z'
11 | deprecated: false
12 | description: A Vuepress Plugin for Code Documentation
13 | downloads: null
14 | homepage: https://github.com/eFrane/pressdocs#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-plugin-pressdocs
19 | npm: https://www.npmjs.com/package/vuepress-plugin-pressdocs
20 | publisher:
21 | avatar: null
22 | email: stefan.graupner@gmail.com
23 | name: null
24 | url: null
25 | username: efrane
26 | repository: https://github.com/eFrane/pressdocs
27 | score: 0.5373707229882863
28 | stars: 0
29 | unstable: true
30 | version: 0.0.7
31 | watchers: 0
32 |
33 | ---
34 |
35 | # Pressdocs
36 |
37 | > Code Documentation inside VuePress
38 |
39 | This is still very much a pre-release of the pre-release but: here goes nothing.
40 |
41 | For now, see [the plugin's README](./packages/vuepress-plugin-pressdocs/README.md) for details.
42 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-pdfjs.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/628385?v=4
4 | email: chris@rebzmedia.com
5 | name: Chris Johnson
6 | url: null
7 | username: rebz
8 | bugs: https://github.com/rebz/vuepress-plugin-pdfjs/issues
9 | category: plugins
10 | date: '2019-01-30T19:39:35.468Z'
11 | deprecated: false
12 | description: VuePress plugin incorporating Mozilla's PDFjs
13 | downloads: null
14 | homepage: https://github.com/rebz/vuepress-plugin-pdfjs#readme
15 | keywords:
16 | - vue
17 | - vuepress
18 | - pdf
19 | - pdfjs
20 | - reference
21 | license: GNU General Public License v3.0
22 | maintainers: null
23 | name: vuepress-plugin-pdfjs
24 | npm: https://www.npmjs.com/package/vuepress-plugin-pdfjs
25 | publisher:
26 | avatar: null
27 | email: chris@rebzmedia.com
28 | name: null
29 | url: null
30 | username: rebz
31 | repository: https://github.com/rebz/vuepress-plugin-pdfjs
32 | score: 0.41280501072049275
33 | stars: 3
34 | unstable: true
35 | version: 0.0.1-beta.2
36 | watchers: 3
37 |
38 | ---
39 |
40 | # rebz/vuepress-plugin-pdfjs
41 |
42 | > PDF Viewer Plugin for VuePress using Mozilla's PDFJS
43 |
44 | #### Installation
45 | `npm i vuepress-plugin-pdfjs --save`
--------------------------------------------------------------------------------
/content/themes/@yanyu-fe-vuepress-theme-dumi.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/87758778?v=4
4 | email: null
5 | name: aibayanyu
6 | url: null
7 | username: yanyu-fe
8 | bugs: https://github.com/yanyu-fe/vuepress-plugins/issues
9 | category: themes
10 | date: '2022-05-31T15:14:29.102Z'
11 | deprecated: false
12 | description: Dumi theme of VuePress
13 | downloads: null
14 | homepage: https://github.com/yanyu-fe/vuepress-plugins
15 | keywords:
16 | - vuepress-theme
17 | - vuepress
18 | - theme
19 | - default
20 | - dumi
21 | license: false
22 | maintainers: null
23 | name: '@yanyu-fe/vuepress-theme-dumi'
24 | npm: https://www.npmjs.com/package/%40yanyu-fe%2Fvuepress-theme-dumi
25 | publisher:
26 | avatar: null
27 | email: aibayanyu@qq.com
28 | name: null
29 | url: null
30 | username: aibayanyu
31 | repository: https://github.com/yanyu-fe/vuepress-plugins
32 | score: 0.5872766414426488
33 | stars: 23
34 | unstable: false
35 | version: 1.1.3
36 | watchers: 23
37 |
38 | ---
39 |
40 | # vuepress插件库
41 |
42 | 目前插件仅支持`vuepress@2`版本,不兼容老版本
43 |
44 | ## 安装
45 |
46 | ```shell
47 |
48 | pnpm i
49 |
50 | ```
51 |
52 | ## 启动
53 |
54 | ```shell
55 |
56 | pnpm docs:dev
57 |
58 | ```
59 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-saltedfish.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: null
4 | email: null
5 | name: null
6 | url: null
7 | username: null
8 | bugs: https://github.com/saltedfish964/vuepress-theme-saltedfish/issues
9 | category: themes
10 | date: '2021-02-03T10:55:17.867Z'
11 | deprecated: false
12 | description: "Welcome to vuepress-theme-saltedfish \U0001F44B\
13 |
\r \r
\r Modificaiton of the theme-vue for VuePress
43 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-blog-kawarimidoll.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/8146876?v=4
4 | email: kawarimidoll+git@gmail.com
5 | name: kawarimidoll
6 | url: null
7 | username: kawarimidoll
8 | bugs: https://github.com/kawarimidoll/vuepress-theme-blog-kawarimidoll/issues
9 | category: themes
10 | date: '2021-04-04T02:36:12.106Z'
11 | deprecated: false
12 | description: This is my blog theme.
13 | downloads: null
14 | homepage: https://github.com/kawarimidoll/vuepress-theme-blog-kawarimidoll#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-theme-blog-kawarimidoll
19 | npm: https://www.npmjs.com/package/vuepress-theme-blog-kawarimidoll
20 | publisher:
21 | avatar: null
22 | email: kawarimidoll+git@gmail.com
23 | name: null
24 | url: null
25 | username: kawarimidoll
26 | repository: https://github.com/kawarimidoll/vuepress-theme-blog-kawarimidoll
27 | score: 0.39776393593720977
28 | stars: 0
29 | unstable: true
30 | version: 0.0.5
31 | watchers: 0
32 |
33 | ---
34 |
35 | # vuepress-theme-blog-kawarimidoll
36 |
37 | This is my blog theme.
38 |
39 | Inspired: [ttskch/vuepress-theme-blog-vuetify](https://github.com/ttskch/vuepress-theme-blog-vuetify)
40 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-nest.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/65864058?v=4
4 | email: null
5 | name: Marton Lederer
6 | url: null
7 | username: nestdotland
8 | bugs: https://github.com/nestdotland/docs/issues
9 | category: themes
10 | date: '2020-07-08T16:30:13.181Z'
11 | deprecated: false
12 | description: The nest.land theme for vuepress
13 | downloads: null
14 | homepage: https://github.com/nestdotland/docs#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-theme-nest
19 | npm: https://www.npmjs.com/package/vuepress-theme-nest
20 | publisher:
21 | avatar: null
22 | email: martondeveloper@gmail.com
23 | name: null
24 | url: null
25 | username: martondev
26 | repository: https://github.com/nestdotland/docs
27 | score: 0.1780937927724266
28 | stars: 6
29 | unstable: false
30 | version: 1.0.0
31 | watchers: 6
32 |
33 | ---
34 |
35 | # Documentation
36 |
37 | This repository contains the source code for our [documentation website](https://docs.nest.land).
38 |
39 | ## Contributing
40 |
41 | ```sh
42 | yarn install
43 | yarn start
44 | ```
45 |
46 | ## License
47 |
48 | The contents of this repository are licensed under [The MIT license](LICENSE).
49 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-reco-ldy.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12009244?v=4
4 | email: null
5 | name: ldy
6 | url: null
7 | username: gitldy1013
8 | bugs: https://github.com/gitldy1013/vuepress-theme-ldy/issues
9 | category: themes
10 | date: '2019-11-14T07:56:48.878Z'
11 | deprecated: false
12 | description: A simple and beautiful vuepress Blog & Doc theme.
13 | downloads: null
14 | homepage: https://vuepress-theme-reco.recoluan.com
15 | keywords:
16 | - vuepress
17 | - vue
18 | - theme
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-theme-reco-ldy
22 | npm: https://www.npmjs.com/package/vuepress-theme-reco-ldy
23 | publisher:
24 | avatar: null
25 | email: 13691363167@163.com
26 | name: null
27 | url: null
28 | username: dongyang_liu
29 | repository: https://github.com/gitldy1013/vuepress-theme-ldy
30 | score: 0.47423889631000127
31 | stars: 2
32 | unstable: false
33 | version: 1.1.1-ldy.3
34 | watchers: 2
35 |
36 | ---
37 |
38 | ## Introduce
39 |
40 | 1. 这是一个vuepress主题,旨在添加博客所需的分类、TAB墙、分页、评论等功能;
41 | 2. 主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用;
42 | 3. 效果:[有梦想的咸鱼](https://blog.liudongyang.top)
43 |
44 | > 此主题源自[午后南杂](https://www.recoluan.com)部分源码由个人改造,如果喜欢请进入官网了解更过细节。
45 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-ldy.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12009244?v=4
4 | email: null
5 | name: gitldy1013
6 | url: null
7 | username: gitldy1013
8 | bugs: https://github.com/gitldy1013/vuepress-theme-ldy/issues
9 | category: themes
10 | date: '2020-06-05T08:44:54.143Z'
11 | deprecated: false
12 | description: A simple and beautiful vuepress Blog & Doc theme.
13 | downloads: null
14 | homepage: https://github.com/gitldy1013/vuepress-theme-ldy#readme
15 | keywords:
16 | - vuepress
17 | - blog
18 | - theme
19 | - vue
20 | license: MIT License
21 | maintainers: null
22 | name: vuepress-theme-ldy
23 | npm: https://www.npmjs.com/package/vuepress-theme-ldy
24 | publisher:
25 | avatar: null
26 | email: 13691363167@163.com
27 | name: null
28 | url: null
29 | username: dongyang_liu
30 | repository: https://github.com/gitldy1013/vuepress-theme-ldy
31 | score: 0.4459795646784973
32 | stars: 2
33 | unstable: false
34 | version: 1.4.0
35 | watchers: 2
36 |
37 | ---
38 |
39 | ## Introduce
40 |
41 | 1. 这是一个vuepress主题,旨在添加博客所需的分类、TAB墙、分页、评论等功能;
42 | 2. 主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用;
43 | 3. 效果:[有梦想的咸鱼](https://blog.liudongyang.top)
44 |
45 | > 此主题源自[午后南杂](https://www.recoluan.com)部分源码由个人改造,如果喜欢请进入官网了解更过细节。
46 |
--------------------------------------------------------------------------------
/content/plugins/@dovyp-vuepress-plugin-clipboard-copy.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/890963?v=4
4 | email: me@dovy.io
5 | name: Dovy
6 | url: null
7 | username: dovyp
8 | bugs: https://github.com/dovy/vuepress-plugin-clipboard-copy/issues
9 | category: plugins
10 | date: '2019-04-20T22:31:28.711Z'
11 | deprecated: false
12 | description: VuePress plugin for copying code blocks
13 | downloads: null
14 | homepage: https://github.com/dovy/vuepress-plugin-clipboard-copy#readme
15 | keywords:
16 | - documentation
17 | - vue
18 | - vuepress
19 | - generator
20 | license: MIT License
21 | maintainers: null
22 | name: '@dovyp/vuepress-plugin-clipboard-copy'
23 | npm: https://www.npmjs.com/package/%40dovyp%2Fvuepress-plugin-clipboard-copy
24 | publisher:
25 | avatar: null
26 | email: me@dovy.io
27 | name: null
28 | url: null
29 | username: dovyp
30 | repository: https://github.com/dovy/vuepress-plugin-clipboard-copy
31 | score: 0.15615833472266905
32 | stars: 3
33 | unstable: true
34 | version: 1.0.0-alpha.7
35 | watchers: 3
36 |
37 | ---
38 |
39 | # dovy/plugin-clipboard-copy
40 |
41 | > clipboard-copy plugin for vuepress
42 |
43 |
44 | Originated from the work of @rdwatters, see https://github.com/vuejs/vuepress/issues/703.
--------------------------------------------------------------------------------
/content/plugins/@codeciting-vuepress-plugin-gitinfo.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/53597307?v=4
4 | email: linjie.gao@tendcloud.com
5 | name: Jagger
6 | url: null
7 | username: codeciting
8 | bugs: https://github.com/codeciting/codeciting-vuepress-plugins/issues
9 | category: plugins
10 | date: '2019-08-30T08:36:11.782Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/codeciting/codeciting-vuepress-plugins#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@codeciting/vuepress-plugin-gitinfo'
19 | npm: https://www.npmjs.com/package/%40codeciting%2Fvuepress-plugin-gitinfo
20 | publisher:
21 | avatar: null
22 | email: ci@codeciting.com
23 | name: null
24 | url: null
25 | username: codecitingci
26 | repository: https://github.com/codeciting/codeciting-vuepress-plugins
27 | score: 0.23124389703252068
28 | stars: 0
29 | unstable: true
30 | version: 0.2.2
31 | watchers: 0
32 |
33 | ---
34 |
35 | # Codeciting Vuepress plugins
36 |
37 | - [Math Plugin](packages/vuepress-plugin-math/README.md)
38 | - [PlantUML Plugin](packages/vuepress-plugin-plantuml/README.md)
39 | - [ECharts Plugin](packages/vuepress-plugin-echarts/README.md)
40 |
--------------------------------------------------------------------------------
/content/plugins/@yanyu-fe-vuepress-plugin-code-block.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/87758778?v=4
4 | email: aibayanyu@qq.com
5 | name: aibayanyu
6 | url: https://www.28yanyu.cn
7 | username: aibayanyu
8 | bugs: https://github.com/yanyu-fe/vuepress-plugins/issues
9 | category: plugins
10 | date: '2022-05-31T15:14:17.040Z'
11 | deprecated: false
12 | description: "vuepress@v2\u4EE3\u7801\u5B9E\u73B0\u4EE3\u7801\u5757demo\u5C55\u793A"
13 | downloads: null
14 | homepage: https://github.com/yanyu-fe/vuepress-plugins#readme
15 | keywords:
16 | - vuepress-plugin
17 | license: false
18 | maintainers: null
19 | name: '@yanyu-fe/vuepress-plugin-code-block'
20 | npm: https://www.npmjs.com/package/%40yanyu-fe%2Fvuepress-plugin-code-block
21 | publisher:
22 | avatar: null
23 | email: aibayanyu@qq.com
24 | name: null
25 | url: null
26 | username: aibayanyu
27 | repository: https://github.com/yanyu-fe/vuepress-plugins
28 | score: 0.5749802150971681
29 | stars: 23
30 | unstable: true
31 | version: 0.1.2
32 | watchers: 23
33 |
34 | ---
35 |
36 | # vuepress插件库
37 |
38 | 目前插件仅支持`vuepress@2`版本,不兼容老版本
39 |
40 | ## 安装
41 |
42 | ```shell
43 |
44 | pnpm i
45 |
46 | ```
47 |
48 | ## 启动
49 |
50 | ```shell
51 |
52 | pnpm docs:dev
53 |
54 | ```
55 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-sitemap-ybd.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/20102582?v=4
4 | email: ybd0612@qq.com
5 | name: Ybond
6 | url: null
7 | username: ybd0612
8 | bugs: https://github.com/ybd0612/vuepress-plugin-sitemap/issues
9 | category: plugins
10 | date: '2022-04-15T06:54:51.874Z'
11 | deprecated: false
12 | description: update for vuepress-plugin-sitemap
13 | downloads: null
14 | homepage: https://github.com/ybd0612/vuepress-plugin-sitemap#readme
15 | keywords:
16 | - documentation
17 | - vue
18 | - vuepress
19 | - vuepress-plugin
20 | - sitemap
21 | - generator
22 | license: MIT License
23 | maintainers: null
24 | name: vuepress-plugin-sitemap-ybd
25 | npm: https://www.npmjs.com/package/vuepress-plugin-sitemap-ybd
26 | publisher:
27 | avatar: null
28 | email: ybd0612@qq.com
29 | name: null
30 | url: null
31 | username: ybd0612
32 | repository: https://github.com/ybd0612/vuepress-plugin-sitemap
33 | score: 0.5155874478514947
34 | stars: 0
35 | unstable: false
36 | version: 1.0.6
37 | watchers: 0
38 |
39 | ---
40 |
41 | # vuepress-plugin-sitemap-ybd
42 |
43 | update for vuepress-plugin-sitemap
44 |
45 | ## Install
46 |
47 | * NPM
48 |
49 | ```sh
50 | npm install vuepress-plugin-sitemap-ybd
51 | ```
52 |
53 |
--------------------------------------------------------------------------------
/content/themes/@codeciting-vuepress-theme-codeciting.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/53597307?v=4
4 | email: linjie.gao@tendcloud.com
5 | name: Jagger
6 | url: null
7 | username: codeciting
8 | bugs: https://github.com/codeciting/codeciting-vuepress-plugins/issues
9 | category: themes
10 | date: '2020-12-15T03:39:23.264Z'
11 | deprecated: false
12 | description: '> TODO: description'
13 | downloads: null
14 | homepage: https://github.com/codeciting/codeciting-vuepress-plugins#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@codeciting/vuepress-theme-codeciting'
19 | npm: https://www.npmjs.com/package/%40codeciting%2Fvuepress-theme-codeciting
20 | publisher:
21 | avatar: null
22 | email: ci@codeciting.com
23 | name: null
24 | url: null
25 | username: codecitingci
26 | repository: https://github.com/codeciting/codeciting-vuepress-plugins
27 | score: 0.24056656429743645
28 | stars: 0
29 | unstable: true
30 | version: 0.2.4
31 | watchers: 0
32 |
33 | ---
34 |
35 | # Codeciting Vuepress plugins
36 |
37 | - [Math Plugin](packages/vuepress-plugin-math/README.md)
38 | - [PlantUML Plugin](packages/vuepress-plugin-plantuml/README.md)
39 | - [ECharts Plugin](packages/vuepress-plugin-echarts/README.md)
40 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-teadocs.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/7500988?v=4
4 | email: null
5 | name: Zhi Bing
6 | url: null
7 | username: lisniuse
8 | bugs: https://github.com/lisniuse/vuepress-theme-teadocs/issues
9 | category: themes
10 | date: '2020-04-25T11:12:11.708Z'
11 | deprecated: false
12 | description: Teadocs theme for VuePress.
13 | downloads: null
14 | homepage: https://github.com/lisniuse/vuepress-theme-teadocs#readme
15 | keywords:
16 | - vuepress
17 | - vuepress-theme
18 | - documentation
19 | - site-generator
20 | license: Other
21 | maintainers: null
22 | name: vuepress-theme-teadocs
23 | npm: https://www.npmjs.com/package/vuepress-theme-teadocs
24 | publisher:
25 | avatar: null
26 | email: 17560235@qq.com
27 | name: null
28 | url: null
29 | username: lisniuse
30 | repository: https://github.com/lisniuse/vuepress-theme-teadocs
31 | score: 0.2678470687146841
32 | stars: 2
33 | unstable: false
34 | version: 1.3.9
35 | watchers: 2
36 |
37 | ---
38 |
39 | # vuepress-theme-teadocs
40 | ## Install
41 |
42 | ```bash
43 | yarn add vuepress-theme-teadocs -D
44 | # OR npm install vuepress-theme-teadocs -D
45 | ```
46 | [More](https://github.com/vuejs/vuepress/tree/master/packages/@vuepress/theme-default#readme)
47 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-code-box.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/6063358?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: xxholly32
8 | bugs: https://github.com/xxholly32/vuepress-plugin-code-box/issues
9 | category: plugins
10 | date: '2020-05-09T12:30:57.657Z'
11 | deprecated: false
12 | description: code box for vuepress
13 | downloads: null
14 | homepage: https://github.com/xxholly32/vuepress-plugin-code-box#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-plugin-code-box
19 | npm: https://www.npmjs.com/package/vuepress-plugin-code-box
20 | publisher:
21 | avatar: null
22 | email: xxholly32@163.com
23 | name: null
24 | url: null
25 | username: xiangxiao
26 | repository: https://github.com/xxholly32/vuepress-plugin-code-box
27 | score: 0.29077295662106467
28 | stars: 2
29 | unstable: true
30 | version: 0.0.4
31 | watchers: 2
32 |
33 | ---
34 |
35 | # vuepress-plugin-code-box
36 |
37 | > code box for vuepress
38 |
39 | ## 安装
40 |
41 | ```
42 | yarn add vuepress-plugin-code-box
43 | ```
44 |
45 | ## Development
46 |
47 | ```bash
48 | yarn dev
49 | yarn build
50 | ```
51 |
52 | For more details, please head VuePress's [documentation](https://v1.vuepress.vuejs.org/).
53 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-code-components.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/8417241?v=4
4 | email: null
5 | name: renzhsh
6 | url: null
7 | username: renzhsh
8 | bugs: https://github.com/renzhsh/vuepress-code-components/issues
9 | category: plugins
10 | date: '2021-06-14T07:17:09.861Z'
11 | deprecated: false
12 | description: '[Document](https://thinking.renzhansheng.cn/devops/markdown/#fiddle)'
13 | downloads: null
14 | homepage: https://github.com/renzhsh/vuepress-code-components#readme
15 | keywords:
16 | - vue
17 | - vuepress
18 | - vuepress-plugin
19 | - markdown
20 | license: MIT License
21 | maintainers: null
22 | name: vuepress-plugin-code-components
23 | npm: https://www.npmjs.com/package/vuepress-plugin-code-components
24 | publisher:
25 | avatar: null
26 | email: renzhsh@126.com
27 | name: null
28 | url: null
29 | username: renzhsh
30 | repository: https://github.com/renzhsh/vuepress-code-components
31 | score: 0.4471668692765279
32 | stars: 0
33 | unstable: true
34 | version: 0.1.3
35 | watchers: 0
36 |
37 | ---
38 |
39 | # vuepress-code-components
40 |
41 | [Document](https://thinking.renzhansheng.cn/devops/markdown/#fiddle)
42 |
43 |
44 |
45 | ## install
46 | ```
47 | npm install vuepress-plugin-code-components
48 | ```
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-iconfont-docs.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/20984527?v=4
4 | email: null
5 | name: busyrat
6 | url: null
7 | username: busyrat
8 | bugs: https://github.com/busyrat/blog/issues
9 | category: plugins
10 | date: '2019-08-20T07:19:01.095Z'
11 | deprecated: false
12 | description: "iconfont \u5B57\u4F53\u5E93\u5FEB\u901F\u751F\u6210\u6587\u6863"
13 | downloads: null
14 | homepage: https://github.com/busyrat/blog#readme
15 | keywords:
16 | - vuepress
17 | - vuepress-plugin
18 | - iconfont
19 | - docs
20 | license: false
21 | maintainers: null
22 | name: vuepress-plugin-iconfont-docs
23 | npm: https://www.npmjs.com/package/vuepress-plugin-iconfont-docs
24 | publisher:
25 | avatar: null
26 | email: mcmagni@163.com
27 | name: null
28 | url: null
29 | username: mcmagni
30 | repository: https://github.com/busyrat/blog
31 | score: 0.17892346060823028
32 | stars: 0
33 | unstable: false
34 | version: 1.0.3
35 | watchers: 0
36 |
37 | ---
38 |
39 | # Blog
40 |
41 | 找回写代码的乐趣
42 |
43 | 
44 |
45 | [github page](https://busyrat.github.io/blog/)
46 |
47 | [vuepress 1.x](https://v1.vuepress.vuejs.org/zh/guide/global-computed.html#site)
48 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-apostrophe.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/34460043?v=4
4 | email: null
5 | name: Apostrophe Technologies
6 | url: null
7 | username: apostrophecms-legacy
8 | bugs: https://github.com/apostrophecms/vuepress-theme-apostrophe/issues
9 | category: themes
10 | date: '2021-11-30T15:27:11.500Z'
11 | deprecated: false
12 | description: Vuepress theme for ApostropheCMS documentation
13 | downloads: null
14 | homepage: https://github.com/apostrophecms/vuepress-theme-apostrophe#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | - apostrophecms
19 | - apostrophe
20 | - cms
21 | - node
22 | license: MIT License
23 | maintainers: null
24 | name: vuepress-theme-apostrophe
25 | npm: https://www.npmjs.com/package/vuepress-theme-apostrophe
26 | publisher:
27 | avatar: null
28 | email: abea@mailbox.org
29 | name: null
30 | url: null
31 | username: alexbea
32 | repository: https://github.com/apostrophecms/vuepress-theme-apostrophe
33 | score: 0.5058220634370882
34 | stars: 0
35 | unstable: false
36 | version: 1.2.0
37 | watchers: 0
38 |
39 | ---
40 |
41 | # ⛔️ **DEPRECATED** — do not use for new projects
42 |
43 | See [our current docs](https://docs.apostrophecms.org/)
44 |
45 | # Apostrophe Vuepress Theme
46 |
47 | WIP
48 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-readmore.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/25076543?v=4
4 | email: null
5 | name: "\u968F\u7B14\u5DDD\u8FF9 itclancoder \u7AD9\u70B9:http://itclan.cn/"
6 | url: null
7 | username: itclanCode
8 | bugs: https://github.com/itclanCode/vuepress-plugin-readmore/issues
9 | category: plugins
10 | date: '2020-11-23T08:32:12.722Z'
11 | deprecated: false
12 | description: "vuepress-plugin-readmore \u9605\u8BFB\u66F4\u591A \u6587\u7AE0\u90E8\
13 | \u5206\u9690\u85CF"
14 | downloads: null
15 | homepage: https://github.com/itclanCode/vuepress-plugin-readmore#readme
16 | keywords:
17 | - vuepress-plugin-readmore
18 | - vuepress-plugin
19 | - vuepress
20 | - readmore
21 | - plugin
22 | - "\u9605\u8BFB\u66F4\u591A"
23 | - "\u6587\u7AE0\u9690\u85CF"
24 | license: MIT License
25 | maintainers: null
26 | name: vuepress-plugin-readmore
27 | npm: https://www.npmjs.com/package/vuepress-plugin-readmore
28 | publisher:
29 | avatar: null
30 | email: itclancode@163.com
31 | name: null
32 | url: null
33 | username: itclan
34 | repository: https://github.com/itclanCode/vuepress-plugin-readmore
35 | score: 0.39033519110449005
36 | stars: 0
37 | unstable: true
38 | version: 0.1.0
39 | watchers: 0
40 |
41 | ---
42 |
43 | ## vuePress-plugin-readmore 介绍
44 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-vuese-docs.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/20984527?v=4
4 | email: null
5 | name: busyrat
6 | url: null
7 | username: busyrat
8 | bugs: https://github.com/busyrat/blog/issues
9 | category: plugins
10 | date: '2019-08-21T08:37:00.089Z'
11 | deprecated: false
12 | description: "> \u57FA\u4E8E vuese \u81EA\u52A8\u751F\u6210\u9879\u76EE\u7EC4\u4EF6\
13 | \u6587\u6863"
14 | downloads: null
15 | homepage: https://github.com/busyrat/blog#readme
16 | keywords:
17 | - vuepress
18 | - vuese
19 | - vue-demo
20 | - vuepress-plugin
21 | license: false
22 | maintainers: null
23 | name: vuepress-plugin-vuese-docs
24 | npm: https://www.npmjs.com/package/vuepress-plugin-vuese-docs
25 | publisher:
26 | avatar: null
27 | email: mcmagni@163.com
28 | name: null
29 | url: null
30 | username: mcmagni
31 | repository: https://github.com/busyrat/blog
32 | score: 0.1784414786997976
33 | stars: 0
34 | unstable: false
35 | version: 1.0.10
36 | watchers: 0
37 |
38 | ---
39 |
40 | # Blog
41 |
42 | 找回写代码的乐趣
43 |
44 | 
45 |
46 | [github page](https://busyrat.github.io/blog/)
47 |
48 | [vuepress 1.x](https://v1.vuepress.vuejs.org/zh/guide/global-computed.html#site)
49 |
--------------------------------------------------------------------------------
/content/themes/@gitldy1013-vuepress-theme-ldy.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12009244?v=4
4 | email: null
5 | name: gitldy1013
6 | url: null
7 | username: gitldy1013
8 | bugs: https://github.com/gitldy1013/vuepress-theme-ldy/issues
9 | category: themes
10 | date: '2019-11-18T09:09:57.487Z'
11 | deprecated: false
12 | description: A simple and beautiful vuepress Blog & Doc theme.
13 | downloads: null
14 | homepage: https://github.com/gitldy1013/vuepress-theme-ldy#readme
15 | keywords:
16 | - vuepress
17 | - blog
18 | - theme
19 | - vue
20 | license: MIT License
21 | maintainers: null
22 | name: '@gitldy1013/vuepress-theme-ldy'
23 | npm: https://www.npmjs.com/package/%40gitldy1013%2Fvuepress-theme-ldy
24 | publisher:
25 | avatar: null
26 | email: 13691363167@163.com
27 | name: null
28 | url: null
29 | username: dongyang_liu
30 | repository: https://github.com/gitldy1013/vuepress-theme-ldy
31 | score: 0.44347081864049853
32 | stars: 2
33 | unstable: false
34 | version: 1.1.3
35 | watchers: 2
36 |
37 | ---
38 |
39 | ## Introduce
40 |
41 | 1. 这是一个vuepress主题,旨在添加博客所需的分类、TAB墙、分页、评论等功能;
42 | 2. 主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用;
43 | 3. 效果:[有梦想的咸鱼](https://blog.liudongyang.top)
44 |
45 | > 此主题源自[午后南杂](https://www.recoluan.com)部分源码由个人改造,如果喜欢请进入官网了解更过细节。
46 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-heimu.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/8667822?v=4
4 | email: null
5 | name: Yesterday17
6 | url: null
7 | username: Yesterday17
8 | bugs: https://github.com/Yesterday17/Kyandy/issues
9 | category: plugins
10 | date: '2019-06-08T09:19:12.774Z'
11 | deprecated: false
12 | description: Moegirlpedia-like heimu.
13 | downloads: null
14 | homepage: https://github.com/Yesterday17/Kyandy#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-plugin-heimu
19 | npm: https://www.npmjs.com/package/vuepress-plugin-heimu
20 | publisher:
21 | avatar: null
22 | email: t@yesterday17.cn
23 | name: null
24 | url: null
25 | username: yesterday17
26 | repository: https://github.com/Yesterday17/Kyandy
27 | score: 0.17825017130205306
28 | stars: 2
29 | unstable: false
30 | version: 1.0.0
31 | watchers: 2
32 |
33 | ---
34 |
35 | ---
36 | home: true
37 | description: Forestry 源码详解的精神续作
38 | actionText: 开始阅读 →
39 | actionLink: /book/
40 | features:
41 | - title: 缓慢填坑
42 | details: 在各种期中/期末考试期间龟速更新,望周知。
43 | - title: "【数据删除】"
44 | details: 本文专注为PC端设计,文中充斥着大量hover后可见的,请谨慎阅读。
45 | - title: awsl
46 | details: 如果文中出现"awsl","真好啊,她们真好啊"之类的话,请不要在意这些细节。
47 | footer: "歩き出すんだ、自分の軌跡になるから、止まらない。"
48 | ---
49 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-jian.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/8622362?v=4
4 | email: imsqrtthree@gmail.com
5 | name: sqrtthree
6 | url: null
7 | username: linhe0x0
8 | bugs: https://github.com/sqrthree/vuepress-theme-jian/issues
9 | category: themes
10 | date: '2020-02-27T15:39:26.672Z'
11 | deprecated: false
12 | description: Just a vuepress theme.
13 | downloads: null
14 | homepage: https://github.com/sqrthree/vuepress-theme-jian#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-theme-jian
19 | npm: https://www.npmjs.com/package/vuepress-theme-jian
20 | publisher:
21 | avatar: null
22 | email: sqrtthree@foxmail.com
23 | name: null
24 | url: null
25 | username: sqrtthree
26 | repository: https://github.com/sqrthree/vuepress-theme-jian
27 | score: 0.40771333702980495
28 | stars: 0
29 | unstable: true
30 | version: 0.1.0
31 | watchers: 0
32 |
33 | ---
34 |
35 | # vuepress-theme-jian
36 |
37 | Just a vuepress theme, Zero config.
38 |
39 | ## How to Use
40 |
41 | #### 1. Install
42 |
43 | ```
44 | yarn add vuepress-theme-jian
45 | # npm install vuepress-theme-jian
46 | ```
47 |
48 | #### 2. Using the theme
49 |
50 | ```js
51 | // .vuepress/config.js
52 | module.exports = {
53 | theme: 'jian',
54 | }
55 | ```
56 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-vuese-vue-demo.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/20984527?v=4
4 | email: null
5 | name: busyrat
6 | url: null
7 | username: busyrat
8 | bugs: https://github.com/busyrat/blog/issues
9 | category: plugins
10 | date: '2019-08-20T06:34:19.093Z'
11 | deprecated: false
12 | description: "> \u57FA\u4E8E vuese \u81EA\u52A8\u751F\u6210\u9879\u76EE\u7EC4\u4EF6\
13 | \u6587\u6863"
14 | downloads: null
15 | homepage: https://github.com/busyrat/blog#readme
16 | keywords:
17 | - vuepress
18 | - vuese
19 | - vue-demo
20 | - vuepress-plugin
21 | license: false
22 | maintainers: null
23 | name: vuepress-plugin-vuese-vue-demo
24 | npm: https://www.npmjs.com/package/vuepress-plugin-vuese-vue-demo
25 | publisher:
26 | avatar: null
27 | email: mcmagni@163.com
28 | name: null
29 | url: null
30 | username: mcmagni
31 | repository: https://github.com/busyrat/blog
32 | score: 0.17930313557386418
33 | stars: 0
34 | unstable: false
35 | version: 1.0.10
36 | watchers: 0
37 |
38 | ---
39 |
40 | # Blog
41 |
42 | 找回写代码的乐趣
43 |
44 | 
45 |
46 | [github page](https://busyrat.github.io/blog/)
47 |
48 | [vuepress 1.x](https://v1.vuepress.vuejs.org/zh/guide/global-computed.html#site)
49 |
--------------------------------------------------------------------------------
/content/plugins/@ikangxu-vuepress-plugin-rss.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/17905150?v=4
4 | email: ikangxu@outlook.com
5 | name: IKangXu
6 | url: null
7 | username: IKangXu
8 | bugs: https://github.com/IKangXu/vuepress-plugin-rss/issues
9 | category: plugins
10 | date: '2020-06-03T03:24:03.335Z'
11 | deprecated: false
12 | description: rss plugin for vuepress-theme-ic
13 | downloads: null
14 | homepage: https://github.com/IKangXu?tab=repositories
15 | keywords:
16 | - vuepress-theme-ic
17 | - rss
18 | license: MIT License
19 | maintainers: null
20 | name: '@ikangxu/vuepress-plugin-rss'
21 | npm: https://www.npmjs.com/package/%40ikangxu%2Fvuepress-plugin-rss
22 | publisher:
23 | avatar: null
24 | email: ikangxu@qq.com
25 | name: null
26 | url: null
27 | username: kangxu
28 | repository: https://github.com/IKangXu/vuepress-plugin-rss
29 | score: 0.4072754386800855
30 | stars: 0
31 | unstable: true
32 | version: 0.0.4
33 | watchers: 0
34 |
35 | ---
36 |
37 | ```js
38 | [require('@ikangxu/vuepress-plugin-rss'), {
39 | base_url: '/', // required
40 | site_url: 'http://ikangxu.cn', // required
41 | copyright: 'IKangXu 2020', // optional
42 | // filter some post
43 | filter: (frontmatter) => { return [true|false] },
44 | // How much articles
45 | count: 20
46 | }]
47 | ```
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-click.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/29809148?v=4
4 | email: null
5 | name: lvqq
6 | url: null
7 | username: lvqq
8 | bugs: https://github.com/lvqq/vuepress-plugin-click/issues
9 | category: plugins
10 | date: '2019-09-21T09:47:31.776Z'
11 | deprecated: false
12 | description: beautify your click in vuepress
13 | downloads: null
14 | homepage: https://github.com/lvqq/vuepress-plugin-click#readme
15 | keywords:
16 | - vuepress-plugin
17 | - click
18 | license: MIT License
19 | maintainers: null
20 | name: vuepress-plugin-click
21 | npm: https://www.npmjs.com/package/vuepress-plugin-click
22 | publisher:
23 | avatar: null
24 | email: nicksonlvqq@gmail.com
25 | name: null
26 | url: null
27 | username: lvqq
28 | repository: https://github.com/lvqq/vuepress-plugin-click
29 | score: 0.4419497301298373
30 | stars: 0
31 | unstable: false
32 | version: 1.0.0
33 | watchers: 0
34 |
35 | ---
36 |
37 | # vuepress-plugin-click
38 | click heart animation in vuepress
39 |
40 | ### Install
41 | ```
42 | npm install vuepress-plugin-click -S
43 | ```
44 |
45 | ### Use
46 | add in `.vuepress/config.js`
47 | ```
48 | plugins: [
49 | 'vuepress-plugin-click'
50 | ]
51 | ```
52 |
53 | ### Demo
54 | - [demo](https://www.nicksonlvqq.cn)
55 |
56 | ### License
57 | - MIT
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-rocket.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/29809148?v=4
4 | email: null
5 | name: lvqq
6 | url: null
7 | username: lvqq
8 | bugs: https://github.com/lvqq/vuepress-plugin-rocket/issues
9 | category: plugins
10 | date: '2019-09-26T17:57:12.232Z'
11 | deprecated: false
12 | description: back to top rocket in vuepress
13 | downloads: null
14 | homepage: https://github.com/lvqq/vuepress-plugin-rocket#readme
15 | keywords:
16 | - plugin
17 | - rocket
18 | - back-to-top
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-plugin-rocket
22 | npm: https://www.npmjs.com/package/vuepress-plugin-rocket
23 | publisher:
24 | avatar: null
25 | email: nicksonlvqq@gmail.com
26 | name: null
27 | url: null
28 | username: lvqq
29 | repository: https://github.com/lvqq/vuepress-plugin-rocket
30 | score: 0.4228828394011599
31 | stars: 2
32 | unstable: false
33 | version: 1.0.4
34 | watchers: 2
35 |
36 | ---
37 |
38 | # vuepress-plugin-rocket
39 | back-to-top rocket in vuepress
40 | ### Install
41 | ```
42 | npm install vuepress-plugin-rocket -S
43 | ```
44 |
45 | ### Use
46 | add in `.vuepress/config.js`
47 | ```
48 | plugins: [
49 | 'vuepress-plugin-rocket'
50 | ]
51 | ```
52 |
53 | ### Demo
54 | - [demo](https://www.chlorine.site)
55 |
56 | ### License
57 | - MIT
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-neon.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/21187224?v=4
4 | email: summer19941126@gmail.com
5 | name: summer1874
6 | url: null
7 | username: summer1874
8 | bugs: https://github.com/summer1874/vuepress-theme-neon/issues
9 | category: themes
10 | date: '2020-01-20T10:36:33.055Z'
11 | deprecated: false
12 | description: Vuepress theme - neon
13 | downloads: null
14 | homepage: https://github.com/summer1874/vuepress-theme-neon
15 | keywords:
16 | - vuepress
17 | - theme
18 | license: MIT License
19 | maintainers: null
20 | name: vuepress-theme-neon
21 | npm: https://www.npmjs.com/package/vuepress-theme-neon
22 | publisher:
23 | avatar: null
24 | email: summer19941126@gmail.com
25 | name: null
26 | url: null
27 | username: summer1874
28 | repository: https://github.com/summer1874/vuepress-theme-neon
29 | score: 0.3250963357670352
30 | stars: 0
31 | unstable: false
32 | version: 1.0.2
33 | watchers: 0
34 |
35 | ---
36 |
37 | > This branch is for Vuepress `1.x`
38 |
39 |
40 | # Vuepress Theme - neon
41 |
42 | :heart: neon theme for [Meteorlxy](https://vuepress-theme-meteorlxy.meteorlxy.cn/)
43 |
44 | :book: [Live Demo and Docs](https://summery1874.site/)
45 |
46 | ## Installation
47 |
48 | ```sh
49 | # for vuepress 1.x
50 | npm install vuepress-theme-neon
51 | ```
52 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-eugeo.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/34713301?v=4
4 | email: null
5 | name: coolyang
6 | url: null
7 | username: yyyanghj
8 | bugs: https://github.com/Coolyang1996/vuepress-theme-eugeo/issues
9 | category: themes
10 | date: '2019-04-20T08:46:36.155Z'
11 | deprecated: false
12 | description: A theme for VuePress
13 | downloads: null
14 | homepage: https://github.com/Coolyang1996/vuepress-theme-eugeo#readme
15 | keywords:
16 | - VuePress
17 | - Theme
18 | license: MIT License
19 | maintainers: null
20 | name: vuepress-theme-eugeo
21 | npm: https://www.npmjs.com/package/vuepress-theme-eugeo
22 | publisher:
23 | avatar: null
24 | email: 504575307@qq.com
25 | name: null
26 | url: null
27 | username: coolyang
28 | repository: https://github.com/Coolyang1996/vuepress-theme-eugeo
29 | score: 0.46749507138237634
30 | stars: 5
31 | unstable: true
32 | version: 0.0.12
33 | watchers: 5
34 |
35 | ---
36 |
37 | # vuepress-theme-eugeo
38 |
39 | A theme for Vuepress
40 |
41 | ## Installation
42 |
43 | > Note: Work For VuePress 1.x
44 |
45 | ```
46 | $ npm install vuepress-theme-eugeo --save-dev
47 | # or
48 | $ yarn add vuepress-theme-eugeo --dev
49 | ```
50 |
51 | ## Docs
52 |
53 | [https://yyyang1996.github.io/vuepress-theme-eugeo/](https://yyyang1996.github.io/vuepress-theme-eugeo/)
54 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-simple-bulma.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/2500247?v=4
4 | email: Gerhut@GMail.com
5 | name: George Cheng
6 | url: null
7 | username: gerhut
8 | bugs: https://github.com/Gerhut/vuepress-theme-simple-bulma/issues
9 | category: themes
10 | date: '2020-02-06T04:36:44.234Z'
11 | deprecated: false
12 | description: A very simple vuepress theme built with bulma.
13 | downloads: null
14 | homepage: https://github.com/Gerhut/vuepress-theme-simple-bulma#readme
15 | keywords:
16 | - vuepress
17 | - bulma
18 | license: The Unlicense
19 | maintainers: null
20 | name: vuepress-theme-simple-bulma
21 | npm: https://www.npmjs.com/package/vuepress-theme-simple-bulma
22 | publisher:
23 | avatar: null
24 | email: Gerhut@GMail.com
25 | name: null
26 | url: null
27 | username: gerhut
28 | repository: https://github.com/Gerhut/vuepress-theme-simple-bulma
29 | score: 0.4259313844046563
30 | stars: 0
31 | unstable: true
32 | version: 0.1.0
33 | watchers: 0
34 |
35 | ---
36 |
37 | # vuepress-theme-simple-bulma
38 |
39 | A very simple vuepress theme built with bulma.
40 |
41 | 
42 |
43 | ## Theme Configs
44 |
45 | - [Footer](./docs/Footer.md)
46 |
47 | ## Frontmatters
48 |
49 | - [Hero](./docs/Hero.md)
50 |
51 | ## License
52 |
53 | [The Unlicense](./LICENSE.md)
54 |
--------------------------------------------------------------------------------
/content/themes/@factorial-vuepress-theme.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/11006857?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: factorial-io
8 | bugs: https://github.com/factorial-io/vuepress-theme/issues
9 | category: themes
10 | date: '2019-09-27T12:43:51.506Z'
11 | deprecated: false
12 | description: '> Vuepress theme with the factorial colors'
13 | downloads: null
14 | homepage: https://github.com/factorial-io/vuepress-theme#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: '@factorial/vuepress-theme'
19 | npm: https://www.npmjs.com/package/%40factorial%2Fvuepress-theme
20 | publisher:
21 | avatar: null
22 | email: milan@factorial.io
23 | name: null
24 | url: null
25 | username: mlnmln
26 | repository: https://github.com/factorial-io/vuepress-theme
27 | score: 0.2920146715686202
28 | stars: 0
29 | unstable: true
30 | version: 1.0.0-alpha.1
31 | watchers: 0
32 |
33 | ---
34 |
35 | # Factorial vuepress theme
36 |
37 | > Vuepress theme with the factorial colors
38 |
39 | ## Installation
40 |
41 | ```
42 | $ yarn add @factorial/vuepress-theme@1.0.0-alpha.1 --dev
43 | ```
44 |
45 | ## Usage
46 |
47 | Add the following to `docs/.vuepress/config.js`.
48 |
49 | ```
50 | module.exports = {
51 | theme: require.resolve("@factorial/vuepress-theme")
52 | };
53 | ```
54 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-gh-style.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/34718241?v=4
4 | email: 1052642137@qq.com
5 | name: wencaizhang
6 | url: null
7 | username: wencaizhang
8 | bugs: https://github.com/wencaizhang/vuepress-theme-gh-style/issues
9 | category: themes
10 | date: '2019-11-11T03:22:37.905Z'
11 | deprecated: false
12 | description: vuepress blog theme - Github style replication for vuepress blog theme
13 | downloads: null
14 | homepage: https://github.com/wencaizhang/vuepress-theme-gh-style
15 | keywords:
16 | - Github style
17 | - blog
18 | - theme
19 | - vuepress
20 | license: MIT License
21 | maintainers: null
22 | name: vuepress-theme-gh-style
23 | npm: https://www.npmjs.com/package/vuepress-theme-gh-style
24 | publisher:
25 | avatar: null
26 | email: 1052642137@qq.com
27 | name: null
28 | url: null
29 | username: wencaizhang
30 | repository: https://github.com/wencaizhang/vuepress-theme-gh-style
31 | score: 0.2955772704347226
32 | stars: 0
33 | unstable: true
34 | version: 0.1.0
35 | watchers: 0
36 |
37 | ---
38 |
39 | # vuepress-theme-gh-style
40 |
41 | :octocat: 一个 GitHub 风格的 vuepress 博客主题
42 |
43 | ## Features
44 |
45 | - 预估文章阅读时长
46 | - 顶部进度条
47 | - markdown自定义容器
48 | - 上一篇、下一篇
49 | - 图片支持点击缩放
50 | - 阅读模式
51 | - 文章目录
52 | - 评论系统,(TODO)
53 | - PWA
54 |
55 | ## License
56 |
57 | MIT · wencaizhang
58 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-zeit.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/11304944?v=4
4 | email: lambdas.dev@gmail.com
5 | name: unix
6 | url: null
7 | username: unix
8 | bugs: https://github.com/unix/vuepress-theme-zeit/issues
9 | category: themes
10 | date: '2019-07-03T01:22:03.198Z'
11 | deprecated: false
12 | description: '> a vuepress theme for zeit design'
13 | downloads: null
14 | homepage: https://github.com/unix/vuepress-theme-zeit#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-theme-zeit
19 | npm: https://www.npmjs.com/package/vuepress-theme-zeit
20 | publisher:
21 | avatar: null
22 | email: lambdas.dev@gmail.com
23 | name: null
24 | url: null
25 | username: wittbulter
26 | repository: https://github.com/unix/vuepress-theme-zeit
27 | score: 0.3246837375114149
28 | stars: 6
29 | unstable: false
30 | version: 1.0.1
31 | watchers: 6
32 |
33 | ---
34 |
35 | # vuepress-theme-zeit
36 |
37 | > a vuepress theme for zeit design
38 |
39 | ## Demo
40 |
41 | [func-online-demo](https://func.lambdas.dev/)
42 |
43 | ## Usage
44 |
45 | ```bash
46 | yarn add vuepress vuepress-theme-zeit
47 | ```
48 |
49 | ## Parameters
50 |
51 | The parameters are the same as the [default template](https://vuepress.vuejs.org/default-theme-config/#homepage).
52 |
53 | ## License
54 | [MIT](./LICENSE)
55 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-saweicore.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/62002212?v=4
4 | email: null
5 | name: Saweima
6 | url: null
7 | username: saweima12
8 | bugs: https://github.com/saweima12/vuepress-theme-saweicore/issues
9 | category: themes
10 | date: '2020-08-31T14:55:56.422Z'
11 | deprecated: false
12 | description: Custom theme for saweima's blog.
13 | downloads: null
14 | homepage: https://github.com/saweima12/vuepress-theme-saweicore#readme
15 | keywords:
16 | - vuepress
17 | - vuepress-theme
18 | - blog
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-theme-saweicore
22 | npm: https://www.npmjs.com/package/vuepress-theme-saweicore
23 | publisher:
24 | avatar: null
25 | email: saweima12@gmail.com
26 | name: null
27 | url: null
28 | username: saweima12
29 | repository: https://github.com/saweima12/vuepress-theme-saweicore
30 | score: 0.47595847347563536
31 | stars: 1
32 | unstable: true
33 | version: 0.2.8
34 | watchers: 1
35 |
36 | ---
37 |
38 | # vuepress-theme-saweicore
39 |
40 | 一款乾淨、簡潔的 Vuepress theme 。
41 |
42 | A clean and simple theme for Vuepress.
43 |
44 | ## 雜談
45 |
46 | 這是我的第一個 Nodejs side project ,許多的功能都尚未完善。不過基本的布局都完善的差不多,因此姑且能用。 如果有發現什麼問、或是有些什麼建議,歡迎透過 issue 交流一下。
47 |
48 | ## Lience
49 |
50 | [MIT Lience](https://github.com/saweima12/vuepress-theme-saweicore/blob/master/LICENSE)
51 |
--------------------------------------------------------------------------------
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
1 | name: ci
2 |
3 | on:
4 | push:
5 | branches:
6 | - main
7 | - master
8 | pull_request:
9 | branches:
10 | - main
11 | - master
12 |
13 | jobs:
14 | ci:
15 | runs-on: ${{ matrix.os }}
16 |
17 | strategy:
18 | matrix:
19 | os: [ubuntu-latest]
20 | node: [14]
21 |
22 | steps:
23 | - name: Checkout 🛎
24 | uses: actions/checkout@v3
25 |
26 | - name: Setup node env 🏗
27 | uses: actions/setup-node@v3.5.1
28 | with:
29 | node-version: ${{ matrix.node }}
30 | check-latest: true
31 |
32 | - name: Get yarn cache directory path 🛠
33 | id: yarn-cache-dir-path
34 | run: echo "::set-output name=dir::$(yarn cache dir)"
35 |
36 | - name: Cache node_modules 📦
37 | uses: actions/cache@v3.0.11
38 | id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
39 | with:
40 | path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
41 | key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
42 | restore-keys: |
43 | ${{ runner.os }}-yarn-
44 |
45 | - name: Install dependencies 👨🏻💻
46 | run: yarn
47 |
48 | - name: Run linter 👀
49 | run: yarn lint
50 |
51 | - name: Run tests 🧪
52 | run: yarn test
53 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-auto-sidebar-navbar.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/20652985?v=4
4 | email: null
5 | name: ouyangdan
6 | url: null
7 | username: iamouyangdan
8 | bugs: https://github.com/iamouyangdan/vuepress-plugin/issues
9 | category: plugins
10 | date: '2022-05-17T03:31:13.286Z'
11 | deprecated: false
12 | description: "VuePress2 \u63D2\u4EF6 - \u81EA\u52A8\u751F\u6210sidebar\u548Cnavbar\u63D2\
13 | \u4EF6\uFF08auto sidebar and navbar)"
14 | downloads: null
15 | homepage: https://github.com/iamouyangdan/vuepress-plugin/tree/main/plugins/vuepress-plugin-auto-sidebar-navbar#readme
16 | keywords:
17 | - vuepress-plugin
18 | - vuepress
19 | - plugin
20 | - sidebar
21 | - navbar
22 | license: MIT License
23 | maintainers: null
24 | name: vuepress-plugin-auto-sidebar-navbar
25 | npm: https://www.npmjs.com/package/vuepress-plugin-auto-sidebar-navbar
26 | publisher:
27 | avatar: null
28 | email: 1183719396@qq.com
29 | name: null
30 | url: null
31 | username: ouyangdan
32 | repository: https://github.com/iamouyangdan/vuepress-plugin
33 | score: 0.517850808527693
34 | stars: 2
35 | unstable: false
36 | version: 1.0.9
37 | watchers: 2
38 |
39 | ---
40 |
41 | # vuepress-plugin
42 |
43 | ## 介绍(Introduction)
44 |
45 | 这是本人为 [vuepress v2](https://v2.vuepress.vuejs.org/zh/guide/) 扩展功能的插件。具体用法请进入对应的插件查看README.md。
46 |
47 | `plugins`目录下的插件皆已发布npm,可自行下载体验 :)。
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-cat.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/22772830?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: QiShaoXuan
8 | bugs: https://github.com/QiShaoXuan/vuepress-plugin-cat/issues
9 | category: plugins
10 | date: '2019-08-14T02:30:54.762Z'
11 | deprecated: false
12 | description: '## How to use'
13 | downloads: null
14 | homepage: https://github.com/QiShaoXuan/vuepress-plugin-cat#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-plugin-cat
19 | npm: https://www.npmjs.com/package/vuepress-plugin-cat
20 | publisher:
21 | avatar: null
22 | email: 474021214@qq.com
23 | name: null
24 | url: null
25 | username: qishaoxuan
26 | repository: https://github.com/QiShaoXuan/vuepress-plugin-cat
27 | score: 0.35091456656181497
28 | stars: 181
29 | unstable: false
30 | version: 1.0.3
31 | watchers: 181
32 |
33 | ---
34 |
35 | # vuepress-plugin-cat
36 |
37 | ## How to use
38 |
39 | 1. install `npm i vuepress-plugin-cat -S`
40 |
41 | 2. add in `config.js`
42 |
43 | ```js
44 | module.exports = {
45 | plugins: [
46 | "vuepress-plugin-cat",
47 | ]
48 | }
49 | ```
50 |
51 | ## Tip
52 |
53 | - This plugin supports `vuepress 1.x`
54 | - This plugin will randomly change the white cat or black cat when router path change.
55 |
56 | ## Demo
57 |
58 | - https://qishaoxuan.github.io/css_tricks/
59 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-maol.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/22772830?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: QiShaoXuan
8 | bugs: https://github.com/QiShaoXuan/vuepress-plugin-cat/issues
9 | category: plugins
10 | date: '2022-04-03T18:08:13.137Z'
11 | deprecated: false
12 | description: '## How to use'
13 | downloads: null
14 | homepage: https://github.com/QiShaoXuan/vuepress-plugin-cat#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-plugin-maol
19 | npm: https://www.npmjs.com/package/vuepress-plugin-maol
20 | publisher:
21 | avatar: null
22 | email: 1440797327@qq.com
23 | name: null
24 | url: null
25 | username: lblog
26 | repository: https://github.com/QiShaoXuan/vuepress-plugin-cat
27 | score: 0.06026038908107664
28 | stars: 181
29 | unstable: false
30 | version: 1.0.5
31 | watchers: 181
32 |
33 | ---
34 |
35 | # vuepress-plugin-cat
36 |
37 | ## How to use
38 |
39 | 1. install `npm i vuepress-plugin-cat -S`
40 |
41 | 2. add in `config.js`
42 |
43 | ```js
44 | module.exports = {
45 | plugins: [
46 | "vuepress-plugin-cat",
47 | ]
48 | }
49 | ```
50 |
51 | ## Tip
52 |
53 | - This plugin supports `vuepress 1.x`
54 | - This plugin will randomly change the white cat or black cat when router path change.
55 |
56 | ## Demo
57 |
58 | - https://qishaoxuan.github.io/css_tricks/
59 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-maor.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/22772830?v=4
4 | email: null
5 | name: null
6 | url: null
7 | username: QiShaoXuan
8 | bugs: https://github.com/QiShaoXuan/vuepress-plugin-cat/issues
9 | category: plugins
10 | date: '2022-04-03T18:45:39.026Z'
11 | deprecated: false
12 | description: '## How to use'
13 | downloads: null
14 | homepage: https://github.com/QiShaoXuan/vuepress-plugin-cat#readme
15 | keywords: null
16 | license: false
17 | maintainers: null
18 | name: vuepress-plugin-maor
19 | npm: https://www.npmjs.com/package/vuepress-plugin-maor
20 | publisher:
21 | avatar: null
22 | email: 1440797327@qq.com
23 | name: null
24 | url: null
25 | username: lblog
26 | repository: https://github.com/QiShaoXuan/vuepress-plugin-cat
27 | score: 0.06026038908107664
28 | stars: 181
29 | unstable: false
30 | version: 1.0.9
31 | watchers: 181
32 |
33 | ---
34 |
35 | # vuepress-plugin-cat
36 |
37 | ## How to use
38 |
39 | 1. install `npm i vuepress-plugin-cat -S`
40 |
41 | 2. add in `config.js`
42 |
43 | ```js
44 | module.exports = {
45 | plugins: [
46 | "vuepress-plugin-cat",
47 | ]
48 | }
49 | ```
50 |
51 | ## Tip
52 |
53 | - This plugin supports `vuepress 1.x`
54 | - This plugin will randomly change the white cat or black cat when router path change.
55 |
56 | ## Demo
57 |
58 | - https://qishaoxuan.github.io/css_tricks/
59 |
--------------------------------------------------------------------------------
/content/plugins/@vuepress-reco-vuepress-plugin-screenfull.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/54167020?v=4
4 | email: recoluan@outlook.com
5 | name: reco_luan
6 | url: null
7 | username: reco_luan
8 | bugs: https://github.com/vuepress-reco/vuepress-plugin-screenfull/issues
9 | category: plugins
10 | date: '2019-11-26T05:38:03.680Z'
11 | deprecated: false
12 | description: Screenfull plugin for vuepress-theme-reco or other vuepress theme
13 | downloads: null
14 | homepage: https://vuepress-theme-reco.recoluan.com
15 | keywords:
16 | - vuepress-theme-reco
17 | - screenfull
18 | - vuepress
19 | license: MIT License
20 | maintainers: null
21 | name: '@vuepress-reco/vuepress-plugin-screenfull'
22 | npm: https://www.npmjs.com/package/%40vuepress-reco%2Fvuepress-plugin-screenfull
23 | publisher:
24 | avatar: null
25 | email: recoluan@outlook.com
26 | name: null
27 | url: null
28 | username: reco_luan
29 | repository: https://github.com/vuepress-reco/vuepress-plugin-screenfull
30 | score: 0.4837118399272069
31 | stars: 2
32 | unstable: false
33 | version: 1.0.1
34 | watchers: 2
35 |
36 | ---
37 |
38 | # @vuepress-reco/vuepress-plugin-screenfull
39 |
40 | ## Details
41 |
42 | > Screenfull plugin for vuepress-theme-reco or other vuepress theme.
43 |
44 | |使用位置|值|
45 | |-|-|
46 | |plugin name|@vuepress-reco/vuepress-plugin-screenfull|
47 | |component name|Screenfull(主题开发时使用)|
48 |
49 |
50 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-handle-sidebar.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/52391595?v=4
4 | email: 984584014@qq.com
5 | name: LiuYang
6 | url: https://github.com/web-liuyang
7 | username: a984584014
8 | bugs: https://github.com/web-liuyang/vuepress-plugin-handle-sidebar/issues
9 | category: plugins
10 | date: '2021-03-10T12:24:00.967Z'
11 | deprecated: false
12 | description: "VuePress automatically generates directories, custom directories\u3002\
13 | vuepress \u81EA\u52A8\u751F\u6210\u76EE\u5F55\uFF0C\u81EA\u5B9A\u4E49\u76EE\u5F55"
14 | downloads: null
15 | homepage: https://github.com/web-liuyang/vuepress-plugin-handle-sidebar#readme
16 | keywords:
17 | - javascript
18 | - vuepress
19 | - nodejs
20 | - vuepress-plugin
21 | - vuepress
22 | - plugin
23 | - autosidebar
24 | - generates
25 | license: false
26 | maintainers: null
27 | name: vuepress-plugin-handle-sidebar
28 | npm: https://www.npmjs.com/package/vuepress-plugin-handle-sidebar
29 | publisher:
30 | avatar: null
31 | email: 984584014@qq.com
32 | name: null
33 | url: null
34 | username: a984584014
35 | repository: https://github.com/web-liuyang/vuepress-plugin-handle-sidebar
36 | score: 0.44208859559294716
37 | stars: 0
38 | unstable: false
39 | version: 1.0.3
40 | watchers: 0
41 |
42 | ---
43 |
44 | # vuepress-plugin-handle-sidebar
45 |
46 | Vuepress自动生成侧边栏的插件
47 |
48 | [文档点我](https://webliuyang.com/vue/vuepress/)
49 |
50 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-tags.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/11927113?v=4
4 | email: 99299684@qq.com
5 | name: mrcode
6 | url: null
7 | username: zhuqiang
8 | bugs: https://github.com/zq99299/vuepress-plugin/issues
9 | category: plugins
10 | date: '2021-01-29T06:15:51.222Z'
11 | deprecated: false
12 | description: tags plugin for vuepress
13 | downloads: null
14 | homepage: https://github.com/zq99299/vuepress-plugin/blob/master/vuepress-plugin-tags/README.md
15 | keywords:
16 | - documentation
17 | - generator
18 | - vue
19 | - vuepress
20 | - tags
21 | - tag
22 | license: MIT License
23 | maintainers: null
24 | name: vuepress-plugin-tags
25 | npm: https://www.npmjs.com/package/vuepress-plugin-tags
26 | publisher:
27 | avatar: null
28 | email: 99299684@qq.com
29 | name: null
30 | url: null
31 | username: zhuqiang
32 | repository: https://github.com/zq99299/vuepress-plugin
33 | score: 0.5248375632017683
34 | stars: 12
35 | unstable: false
36 | version: 1.0.2
37 | watchers: 12
38 |
39 | ---
40 |
41 | # vuepress-plugin
42 |
43 | 为了写笔记,而针对自己的一些需求开始写 vuepress 插件
44 |
45 | ## 自有插件
46 |
47 | - [vuepress-plugin-baidu-tongji-analytics](./vuepress-plugin-baidu-tongji-analytics/README.md)
48 | :百度统计插件
49 | - [vuepress-plugin-toolbar](./vuepress-plugin-toolbar/README.md)
50 | :页面右侧工具栏插件
51 | - [vuepress-plugin-tags](./vuepress-plugin-tags/README.md)
52 | :在主标题下方生成标签列表
53 |
54 | ## 其他好用的插件分享
55 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-dark-new.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12853597?v=4
4 | email: david@hmnd.io
5 | name: David Roizenman
6 | url: null
7 | username: hmnd
8 | bugs: https://github.com/hmnd/vuepress-theme-dark-new/issues
9 | category: themes
10 | date: '2018-12-16T18:27:50.653Z'
11 | deprecated: false
12 | description: Dark theme for vuepress
13 | downloads: null
14 | homepage: https://github.com/hmnd/vuepress-theme-dark-new#readme
15 | keywords:
16 | - vuepress-theme
17 | - vuepress
18 | - dark
19 | - vue
20 | license: MIT License
21 | maintainers: null
22 | name: vuepress-theme-dark-new
23 | npm: https://www.npmjs.com/package/vuepress-theme-dark-new
24 | publisher:
25 | avatar: null
26 | email: david@hmnd.io
27 | name: null
28 | url: null
29 | username: hmnd
30 | repository: https://github.com/hmnd/vuepress-theme-dark-new
31 | score: 0.42453368633622657
32 | stars: 1
33 | unstable: true
34 | version: 0.1.2
35 | watchers: 1
36 |
37 | ---
38 |
39 | 
40 | vuepress-theme-dark-new
41 | Dark theme for VuePress to reduce eye strain when reading
42 |
43 | ## Installation
44 | ``` bash
45 | npm i -D vuepress-theme-dark-new
46 |
47 | yarn add --dev vuepress-theme-dark-new
48 | ```
49 |
50 | ## Configuration
51 | ``` js
52 | module.exports = {
53 | theme: 'dark-new',
54 | };
55 | ```
56 |
--------------------------------------------------------------------------------
/content/plugins/@vutex-vuepress-plugin-shiki.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/17541209?v=4
4 | email: aster@vers.site
5 | name: Aster
6 | url: null
7 | username: oovm
8 | bugs: https://github.com/GalAster/vuepress-plugin-shiki/issues
9 | category: plugins
10 | date: '2020-08-09T10:26:39.354Z'
11 | deprecated: false
12 | description: shiki highlighter
13 | downloads: null
14 | homepage: https://github.com/GalAster/vuepress-plugin-shiki
15 | keywords:
16 | - shiki
17 | - syntax-highlighter
18 | - highlighter
19 | license: Mozilla Public License 2.0
20 | maintainers: null
21 | name: '@vutex/vuepress-plugin-shiki'
22 | npm: https://www.npmjs.com/package/%40vutex%2Fvuepress-plugin-shiki
23 | publisher:
24 | avatar: null
25 | email: galaster@foxmail.com
26 | name: null
27 | url: null
28 | username: galaster
29 | repository: https://github.com/GalAster/vuepress-plugin-shiki
30 | score: 0.4486211989933508
31 | stars: 0
32 | unstable: true
33 | version: 0.3.1
34 | watchers: 0
35 |
36 | ---
37 |
38 | # Git Time Travel
39 |
40 | 将 git 的提交平均分布到一段时间内
41 |
42 | ## PowerShell Version
43 |
44 | ```sh
45 | git-utils reset Head~20 -i # 开启交互式变基
46 | # 然后把 pick 全部替换成 edit 并关闭 editor
47 | # 直接执行 time-travel.ps1 即可
48 | ```
49 |
50 | ## git
51 |
52 | ```sh
53 | git-root "🎂 Project initialized!"
54 | git-time 2a990148 2019-01-01
55 | ```
56 |
57 |
58 | ## Development
59 |
60 | ```sh
61 | cargo install --path .
62 | ```
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-dline.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/23148342?v=4
4 | email: stwangcq@163.com
5 | name: wst
6 | url: null
7 | username: wangshiting
8 | bugs: https://github.com/laobg/vuepress-plugin-dline/issues
9 | category: plugins
10 | date: '2021-03-01T08:46:53.097Z'
11 | deprecated: false
12 | description: vuepress-theme-plugin
13 | downloads: null
14 | homepage: https://github.com/laobg/vuepress-plugin-dline#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | - background
19 | license: Apache License 2.0
20 | maintainers: null
21 | name: vuepress-plugin-dline
22 | npm: https://www.npmjs.com/package/vuepress-plugin-dline
23 | publisher:
24 | avatar: null
25 | email: stwangcq@163.com
26 | name: null
27 | url: null
28 | username: wangshiting
29 | repository: https://github.com/laobg/vuepress-plugin-dline
30 | score: 0.4517373454781761
31 | stars: 1
32 | unstable: false
33 | version: 1.0.2
34 | watchers: 1
35 |
36 | ---
37 |
38 | # vuepress-plugin-dline
39 | ## 预览
40 | [我的博客](https://www.wstee.com)
41 | ## 安装
42 | ``npm i vuepress-plugin-dline -D``
43 | ## 使用
44 | ```js
45 | // docs/.vuepres/config.js
46 | module.exports = {
47 | plugins: [
48 | [
49 | 'dline',
50 | {
51 | zIndex: -1, // 背景层级
52 | opacity: .9, // 背景透明度
53 | color: '#666', // 线条颜色 16进制
54 | count: 166 // 线条密度
55 | }
56 | ]
57 | ]
58 | }
59 |
60 | ```
61 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-toolbar.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/11927113?v=4
4 | email: 99299684@qq.com
5 | name: mrcode
6 | url: null
7 | username: zhuqiang
8 | bugs: https://github.com/zq99299/vuepress-plugin/issues
9 | category: plugins
10 | date: '2020-05-06T01:55:24.424Z'
11 | deprecated: false
12 | description: toolbar plugin for vuepress
13 | downloads: null
14 | homepage: https://github.com/zq99299/vuepress-plugin/blob/master/vuepress-plugin-toolbar/README.md
15 | keywords:
16 | - documentation
17 | - generator
18 | - vue
19 | - vuepress
20 | - toolbar
21 | license: MIT License
22 | maintainers: null
23 | name: vuepress-plugin-toolbar
24 | npm: https://www.npmjs.com/package/vuepress-plugin-toolbar
25 | publisher:
26 | avatar: null
27 | email: 99299684@qq.com
28 | name: null
29 | url: null
30 | username: zhuqiang
31 | repository: https://github.com/zq99299/vuepress-plugin
32 | score: 0.5201482900764813
33 | stars: 12
34 | unstable: false
35 | version: 1.0.1
36 | watchers: 12
37 |
38 | ---
39 |
40 | # vuepress-plugin
41 |
42 | 为了写笔记,而针对自己的一些需求开始写 vuepress 插件
43 |
44 | ## 自有插件
45 |
46 | - [vuepress-plugin-baidu-tongji-analytics](./vuepress-plugin-baidu-tongji-analytics/README.md)
47 | :百度统计插件
48 | - [vuepress-plugin-toolbar](./vuepress-plugin-toolbar/README.md)
49 | :页面右侧工具栏插件
50 | - [vuepress-plugin-tags](./vuepress-plugin-tags/README.md)
51 | :在主标题下方生成标签列表
52 |
53 | ## 其他好用的插件分享
54 |
--------------------------------------------------------------------------------
/content/themes/@sammyne-vuepress-theme-sammyne.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/16666661?v=4
4 | email: null
5 | name: sammyne
6 | url: null
7 | username: sammyne
8 | bugs: https://github.com/sammyne/vuepress-theme-sammyne/issues
9 | category: themes
10 | date: '2019-07-13T09:28:43.265Z'
11 | deprecated: false
12 | description: A vuepress theme for blog https://sammyne.github.io/.
13 | downloads: null
14 | homepage: https://github.com/sammyne/vuepress-theme-sammyne#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | - vue
19 | license: ISC License
20 | maintainers: null
21 | name: '@sammyne/vuepress-theme-sammyne'
22 | npm: https://www.npmjs.com/package/%40sammyne%2Fvuepress-theme-sammyne
23 | publisher:
24 | avatar: null
25 | email: xiangminli@alumni.sjtu.edu.cn
26 | name: null
27 | url: null
28 | username: sammyne
29 | repository: https://github.com/sammyne/vuepress-theme-sammyne
30 | score: 0.31129281208774273
31 | stars: 1
32 | unstable: true
33 | version: 0.0.7
34 | watchers: 1
35 |
36 | ---
37 |
38 | # vuepress-theme-sammyne
39 |
40 | [](https://circleci.com/gh/sammyne/vuepress-theme-sammyne)
41 | [](https://www.npmjs.com/package/@sammyne/vuepress-theme-sammyne)
42 |
43 | A vuepress theme for my personal blog https://sammyne.github.io/.
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-dark.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/920747?v=4
4 | email: npm@coded.pl
5 | name: Damian Stasik
6 | url: null
7 | username: damianstasik
8 | bugs: https://github.com/visualfanatic/vue-svg-loader/issues
9 | category: themes
10 | date: '2018-08-31T20:12:25.000Z'
11 | deprecated: false
12 | description: Dark theme for vuepress
13 | downloads: null
14 | homepage: https://github.com/visualfanatic/vuepress-theme-dark#readme
15 | keywords:
16 | - vuepress-theme
17 | - vuepress
18 | - dark
19 | - vue
20 | license: MIT License
21 | maintainers: null
22 | name: vuepress-theme-dark
23 | npm: https://www.npmjs.com/package/vuepress-theme-dark
24 | publisher:
25 | avatar: null
26 | email: damian@visualfanatic.pl
27 | name: null
28 | url: null
29 | username: visualfanatic
30 | repository: https://github.com/visualfanatic/vuepress-theme-dark
31 | score: 0.22730521905326542
32 | stars: 17
33 | unstable: true
34 | version: 0.1.0
35 | watchers: 17
36 |
37 | ---
38 |
39 | 
40 | vuepress-theme-dark
41 | Dark theme for VuePress to reduce eye strain when reading
42 |
43 | ## Installation
44 | ``` bash
45 | npm i -D vuepress-theme-dark
46 |
47 | yarn add --dev vuepress-theme-dark
48 | ```
49 |
50 | ## Configuration
51 | ``` js
52 | module.exports = {
53 | theme: 'dark',
54 | };
55 | ```
56 |
--------------------------------------------------------------------------------
/content/plugins/vuepress-plugin-markdown-checkbox.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/20652985?v=4
4 | email: null
5 | name: ouyangdan
6 | url: null
7 | username: iamouyangdan
8 | bugs: https://github.com/iamouyangdan/vuepress-plugin/issues
9 | category: plugins
10 | date: '2022-05-17T04:15:42.120Z'
11 | deprecated: false
12 | description: "VuePress2 \u63D2\u4EF6 - \u6269\u5C55markdown\u4EFB\u52A1\u5217\u8868\
13 | /\u590D\u9009\u6846\u529F\u80FD\uFF08extends markdown checkbox or tasklist\uFF09"
14 | downloads: null
15 | homepage: https://github.com/iamouyangdan/vuepress-plugin/tree/main/plugins/vuepress-plugin-markdown-checkbox#readme
16 | keywords:
17 | - vuepress-plugin
18 | - vuepress
19 | - plugin
20 | - markdown
21 | - checkbox
22 | - tasklist
23 | license: MIT License
24 | maintainers: null
25 | name: vuepress-plugin-markdown-checkbox
26 | npm: https://www.npmjs.com/package/vuepress-plugin-markdown-checkbox
27 | publisher:
28 | avatar: null
29 | email: 1183719396@qq.com
30 | name: null
31 | url: null
32 | username: ouyangdan
33 | repository: https://github.com/iamouyangdan/vuepress-plugin
34 | score: 0.5176495897673955
35 | stars: 2
36 | unstable: false
37 | version: 1.0.8
38 | watchers: 2
39 |
40 | ---
41 |
42 | # vuepress-plugin
43 |
44 | ## 介绍(Introduction)
45 |
46 | 这是本人为 [vuepress v2](https://v2.vuepress.vuejs.org/zh/guide/) 扩展功能的插件。具体用法请进入对应的插件查看README.md。
47 |
48 | `plugins`目录下的插件皆已发布npm,可自行下载体验 :)。
--------------------------------------------------------------------------------
/content/plugins/@ubclaunchpad-vuepress-plugin-fathom.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/12406312?v=4
4 | email: null
5 | name: UBC Launch Pad
6 | url: null
7 | username: ubclaunchpad
8 | bugs: https://github.com/ubclaunchpad/vuepress-plugin-fathom/issues
9 | category: plugins
10 | date: '2020-06-03T15:42:07.229Z'
11 | deprecated: false
12 | description: Vuepress plugin for Fathom Analytics
13 | downloads: null
14 | homepage: https://github.com/ubclaunchpad/vuepress-plugin-fathom#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: '@ubclaunchpad/vuepress-plugin-fathom'
19 | npm: https://www.npmjs.com/package/%40ubclaunchpad%2Fvuepress-plugin-fathom
20 | publisher:
21 | avatar: null
22 | email: robertlin1@gmail.com
23 | name: null
24 | url: null
25 | username: bobheadxi
26 | repository: https://github.com/ubclaunchpad/vuepress-plugin-fathom
27 | score: 0.45050541699564833
28 | stars: 0
29 | unstable: false
30 | version: 1.2.1
31 | watchers: 0
32 |
33 | ---
34 |
35 | # vuepress-plugin-fathom 
36 |
37 | A simple VuePress plugin for Fathom Analytics.
38 |
39 | ```sh
40 | npm i -s @ubclaunchpad/vuepress-plugin-fathom
41 | ```
42 |
43 | ```js
44 | module.exports = {
45 | // ...
46 | plugins: [
47 | ['@ubclaunchpad/fathom', {
48 | 'siteID': 'XXXXXXXX',
49 | }],
50 | ],
51 | }
52 | ```
53 |
--------------------------------------------------------------------------------
/content/plugins/@nines-vuepress-plugin-comments.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/64388301?v=4
4 | email: null
5 | name: wangjia_1919@163.com
6 | url: null
7 | username: nine-theme
8 | bugs: https://github.com/nine-theme/vuepress-plugin-comments/issues
9 | category: plugins
10 | date: '2020-08-13T02:31:02.302Z'
11 | deprecated: false
12 | description: vuepress' comments plugin for vuepress
13 | downloads: null
14 | homepage: https://github.com/nine-theme/vuepress-plugin-comments#readme
15 | keywords:
16 | - vuepress
17 | - comments
18 | license: MIT License
19 | maintainers: null
20 | name: '@nines/vuepress-plugin-comments'
21 | npm: https://www.npmjs.com/package/%40nines%2Fvuepress-plugin-comments
22 | publisher:
23 | avatar: null
24 | email: wangjia_1919@163.com
25 | name: null
26 | url: null
27 | username: wangjia_1919
28 | repository: https://github.com/nine-theme/vuepress-plugin-comments
29 | score: 0.4128609730655779
30 | stars: 0
31 | unstable: true
32 | version: 0.0.2
33 | watchers: 0
34 |
35 | ---
36 |
37 | # vuepress-plugin-comments
38 | 
39 | 
40 | 
41 | 
42 |
43 | ---
44 | vuepress theme comments
45 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-light.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/17166940?v=4
4 | email: phshy0607@outlook.com
5 | name: Hao Peng
6 | url: null
7 | username: phshy0607
8 | bugs: https://github.com/phshy0607/vuepress-theme-light/issues
9 | category: themes
10 | date: '2019-10-30T07:06:22.915Z'
11 | deprecated: false
12 | description: a light vuepress theme
13 | downloads: null
14 | homepage: https://github.com/phshy0607/vuepress-theme-light#readme
15 | keywords: null
16 | license: MIT License
17 | maintainers: null
18 | name: vuepress-theme-light
19 | npm: https://www.npmjs.com/package/vuepress-theme-light
20 | publisher:
21 | avatar: null
22 | email: phshy0607@outlook.com
23 | name: null
24 | url: null
25 | username: phshy0607
26 | repository: https://github.com/phshy0607/vuepress-theme-light
27 | score: 0.4532092059934117
28 | stars: 1
29 | unstable: false
30 | version: 1.0.7
31 | watchers: 1
32 |
33 | ---
34 |
35 | # vuepress-theme-light
36 |
37 | A simple and light theme extends vuepress default theme
38 |
39 | WIP
40 |
41 | ## Installation
42 | ```
43 | npm install vuepress-theme-light --save
44 | ```
45 |
46 | ## Development
47 |
48 | ```
49 | npm install
50 | npm run dev
51 | ```
52 |
53 | ## Restriction
54 | 1. All markdown file under .vuepress folder is considered a blog post
55 | 2. To display front page, use ReadMe.md in .vuepress folder
56 | 3. If you want to use the posts list, please add a nav '/posts/
57 |
58 |
59 |
60 |
--------------------------------------------------------------------------------
/content/themes/@ianwalter-vuepress-theme-brooks.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/122028?v=4
4 | email: null
5 | name: Ian Walter
6 | url: https://ianwalter.dev
7 | username: ianwalter
8 | bugs: https://github.com/vuejs/vuepress/issues
9 | category: themes
10 | date: '2020-05-06T14:32:13.802Z'
11 | deprecated: false
12 | description: A flexible VuePress theme based on the default theme
13 | downloads: null
14 | homepage: https://github.com/ianwalter/vuepress-theme-brooks#readme
15 | keywords:
16 | - documentation
17 | - vue
18 | - vuepress
19 | - theme
20 | license: Other
21 | maintainers: null
22 | name: '@ianwalter/vuepress-theme-brooks'
23 | npm: https://www.npmjs.com/package/%40ianwalter%2Fvuepress-theme-brooks
24 | publisher:
25 | avatar: null
26 | email: srv@ianwalter.dev
27 | name: null
28 | url: null
29 | username: ianwalter
30 | repository: https://github.com/ianwalter/vuepress-theme-brooks
31 | score: 0.3864568681524744
32 | stars: 1
33 | unstable: false
34 | version: 1.2.0
35 | watchers: 1
36 |
37 | ---
38 |
39 | # @ianwalter/vuepress-theme-brooks
40 | > A flexible VuePress theme based on the default theme
41 |
42 | ## Plugins
43 |
44 | The default theme has the following plugin built in:
45 |
46 | - [@vuepress/plugin-active-header-links](https://github.com/vuejs/vuepress/tree/master/packages/@vuepress/plugin-active-header-links)
47 | - [@vuepress/plugin-search](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/plugin-search)
48 |
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-ermu.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/27935613?v=4
4 | email: xsl0420@126.com
5 | name: ermu
6 | url: null
7 | username: ermu
8 | bugs: https://github.com/ermu0420/vuepress-theme-ermu/issues
9 | category: themes
10 | date: '2019-06-30T03:07:12.291Z'
11 | deprecated: false
12 | description: "vuepress\u535A\u5BA2\u4E3B\u9898"
13 | downloads: null
14 | homepage: https://github.com/ermu0420/vuepress-theme-ermu#readme
15 | keywords:
16 | - vuepress
17 | - theme
18 | - blog
19 | license: MIT License
20 | maintainers: null
21 | name: vuepress-theme-ermu
22 | npm: https://www.npmjs.com/package/vuepress-theme-ermu
23 | publisher:
24 | avatar: null
25 | email: xsl0420@126.com
26 | name: null
27 | url: null
28 | username: ermu
29 | repository: https://github.com/ermu0420/vuepress-theme-ermu
30 | score: 0.43515848991313866
31 | stars: 0
32 | unstable: false
33 | version: 1.0.4
34 | watchers: 0
35 |
36 | ---
37 |
38 | # vuepress-theme-ermu
39 |
40 | > theme-ermu for vuepress
41 |
42 | ## Plugins
43 |
44 | The ermu theme has the following plugin built in:
45 |
46 | - [@vuepress/plugin-active-header-links](https://github.com/vuejs/vuepress/tree/master/packages/@vuepress/plugin-active-header-links)
47 | - [@vuepress/plugin-google-analytics](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/plugin-google-analytics)
48 | - [@vuepress/plugin-search](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/plugin-search)
49 |
--------------------------------------------------------------------------------
/content/plugins/@vite-vuepress-plugin-mathjax.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/36895023?v=4
4 | email: null
5 | name: vitelabs
6 | url: null
7 | username: vitelabs
8 | bugs: https://github.com/vitelabs/vuepress-plugin-mathjax/issues
9 | category: plugins
10 | date: '2021-02-10T03:53:29.330Z'
11 | deprecated: false
12 | description: '> A mathjax render plugin for vuepress. It will render mathjax in server,
13 | without import some extra files in client.'
14 | downloads: null
15 | homepage: https://github.com/vitelabs/vuepress-plugin-mathjax#readme
16 | keywords:
17 | - vuepress
18 | - plugin
19 | - vue
20 | - vite
21 | license: false
22 | maintainers: null
23 | name: '@vite/vuepress-plugin-mathjax'
24 | npm: https://www.npmjs.com/package/%40vite%2Fvuepress-plugin-mathjax
25 | publisher:
26 | avatar: null
27 | email: lingyong1992@foxmail.com
28 | name: null
29 | url: null
30 | username: soliury
31 | repository: https://github.com/vitelabs/vuepress-plugin-mathjax
32 | score: 0.46049940132335376
33 | stars: 5
34 | unstable: false
35 | version: 1.1.0
36 | watchers: 5
37 |
38 | ---
39 |
40 | # @vite/vuepress-plugin-mathjax
41 |
42 | > A mathjax render plugin for vuepress. It will render mathjax in server, without import some extra files in client.
43 |
44 | ## Install
45 |
46 | ```
47 | yarn add -D @vite/vuepress-plugin-mathjax
48 | ```
49 |
50 | Add `@vite/vuepress-plugin-mathjax` to `config.js`:
51 |
52 | ```javascript
53 | plugins: [
54 | ['@vite/vuepress-plugin-mathjax']
55 | ]
56 | ```
--------------------------------------------------------------------------------
/content/themes/vuepress-theme-wjygrit.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/56510542?v=4
4 | email: 1435408225@qq.com
5 | name: WJYGRIT
6 | url: null
7 | username: wjygrit
8 | bugs: https://github.com/GRITWJY/WJYGRIT-BLOG/issues
9 | category: themes
10 | date: '2022-06-03T12:56:14.177Z'
11 | deprecated: false
12 | description: "\u4E00\u4E2A\u57FA\u4E8Evuepress\u7684\u535A\u5BA2\u4E3B\u9898"
13 | downloads: null
14 | homepage: https://github.com/GRITWJY/WJYGRIT-BLOG#readme
15 | keywords:
16 | - documentation
17 | - vue
18 | - vuepress
19 | - generator
20 | - theme
21 | - blog
22 | license: false
23 | maintainers: null
24 | name: vuepress-theme-wjygrit
25 | npm: https://www.npmjs.com/package/vuepress-theme-wjygrit
26 | publisher:
27 | avatar: null
28 | email: 1435408225@qq.com
29 | name: null
30 | url: null
31 | username: wjygrit
32 | repository: https://github.com/GRITWJY/WJYGRIT-BLOG
33 | score: 0.49823642836614834
34 | stars: 2
35 | unstable: false
36 | version: 1.1.10
37 | watchers: 2
38 |
39 | ---
40 |
41 | # WJYGRIT 的个人博客 源码
42 |
43 |
44 | 欢迎大家访问我的博客 http://wjygrit.cn
45 |
46 |
47 | ## 我的其他开源项目
48 |
49 | - [wjy-cli](https://github.com/GRITWJY/wjy-cli), 可以自己选择模板创建项目,类似于`uniapp`的创建项目形式,主要解决前端项目依赖包版本冲突的问题,正在不断完善中
50 | - [ ] wjyFrontUtil, 前端工具函数库, 正在组织项目结构中
51 | - [ ] canvas-report, canvas的图片批改编辑器
52 |
53 |
54 | ## V1.1.10
55 | ---- 2002 06 03
56 | 本博客是自己参考`vdoing`主题的源码后,在它基础上 修改后的, 现在这个版本还在完善阶段,后期还会针对markdown做一些插件,
57 | 以及完善使用文档,大家需要学习的可以建议看 `vdoing`主题或我自己主题的源码哈
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/content/plugins/@limdongjin-vuepress-plugin-sidebar-on-off.md:
--------------------------------------------------------------------------------
1 | ---
2 | author:
3 | avatar: https://avatars.githubusercontent.com/u/30315743?v=4
4 | email: geniuslim27@gmail.com
5 | name: limdongjin
6 | url: null
7 | username: limdongjin
8 | bugs: https://github.com/limdongjin/vuepress-plugin-sidebar-on-off/issues
9 | category: plugins
10 | date: '2019-01-17T06:55:40.949Z'
11 | deprecated: false
12 | description: sidebar-on-off plugin for vuepress
13 | downloads: null
14 | homepage: https://github.com/limdongjin/vuepress-plugin-sidebar-on-off#readme
15 | keywords:
16 | - documentation
17 | - vue
18 | - vuepress
19 | - sidebar
20 | license: MIT License
21 | maintainers: null
22 | name: '@limdongjin/vuepress-plugin-sidebar-on-off'
23 | npm: https://www.npmjs.com/package/%40limdongjin%2Fvuepress-plugin-sidebar-on-off
24 | publisher:
25 | avatar: null
26 | email: geniuslim27@gmail.com
27 | name: null
28 | url: null
29 | username: limdongjin
30 | repository: https://github.com/limdongjin/vuepress-plugin-sidebar-on-off
31 | score: 0.3074565767163967
32 | stars: 1
33 | unstable: true
34 | version: 1.0.0-alpha.32
35 | watchers: 1
36 |
37 | ---
38 |
39 | # @limdongjin/vuepress-plugin-sidebar-on-off
40 |
41 | plugin-sidebar-on-off for vuepress
42 |
43 | https://www.npmjs.com/package/@limdongjin/vuepress-plugin-sidebar-on-off
44 |
45 | ## Install
46 |
47 | ```bash
48 | yarn add -D @limdongjin/vuepress-plugin-sidebar-on-off
49 | ```
50 |
51 | ## Usage
52 |
53 | ```js
54 | module.exports = {
55 | plugins: ['@limdongjin/vuepress-plugin-sidebar-on-off']
56 | }
57 | ```
58 |
--------------------------------------------------------------------------------