diff --git a/.docs/src/api-examples.md b/.docs/src/api-examples.md deleted file mode 100644 index 995adeb..0000000 --- a/.docs/src/api-examples.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -outline: deep ---- - -# Runtime API Examples - -This page demonstrates usage of some of the runtime APIs provided by VitePress. - -The main `useData()` API can be used to access site, theme, and page data for the current page. It works in both `.md` and `.vue` files: - -```md - - -## Results - -### Theme Data -
{{ theme }}
- -### Page Data - -
{{ page }}
- -### Page Frontmatter -
{{ frontmatter }}
-``` - - -## Results - -### Theme Data -
{{ theme }}
- -### Page Data -
{{ page }}
- -### Page Frontmatter -
{{ frontmatter }}
- -## More - -Check out the documentation for the [full list of runtime APIs](https://vitepress.dev/reference/runtime-api#usedata). diff --git a/.docs/src/index.md b/.docs/src/index.md index 4d13021..c7e2d7a 100644 --- a/.docs/src/index.md +++ b/.docs/src/index.md @@ -9,9 +9,6 @@ hero: - theme: brand text: 个人博客 link: https://ayozoo.github.io/ - - theme: alt - text: API Examples - link: /api-examples features: - title: 文档记录 diff --git a/.docs/src/markdown-examples.md b/.docs/src/markdown-examples.md deleted file mode 100644 index f9258a5..0000000 --- a/.docs/src/markdown-examples.md +++ /dev/null @@ -1,85 +0,0 @@ -# Markdown Extension Examples - -This page demonstrates some of the built-in markdown extensions provided by VitePress. - -## Syntax Highlighting - -VitePress provides Syntax Highlighting powered by [Shiki](https://github.com/shikijs/shiki), with additional features like line-highlighting: - -**Input** - -````md -```js{4} -export default { - data () { - return { - msg: 'Highlighted!' - } - } -} -``` -```` - -**Output** - -```js{4} -export default { - data () { - return { - msg: 'Highlighted!' - } - } -} -``` - -## Custom Containers - -**Input** - -```md -::: info -This is an info box. -::: - -::: tip -This is a tip. -::: - -::: warning -This is a warning. -::: - -::: danger -This is a dangerous warning. -::: - -::: details -This is a details block. -::: -``` - -**Output** - -::: info -This is an info box. -::: - -::: tip -This is a tip. -::: - -::: warning -This is a warning. -::: - -::: danger -This is a dangerous warning. -::: - -::: details -This is a details block. -::: - -## More - -Check out the documentation for the [full list of markdown extensions](https://vitepress.dev/guide/markdown). diff --git a/.gitignore b/.gitignore index 30bc162..3beb234 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -/node_modules \ No newline at end of file +/node_modules +*/.vitepress/dist +*/.vitepress/cache \ No newline at end of file diff --git a/package.json b/package.json index 383cb05..39ed6c4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "scripts": { "docs:dev": "vitepress dev .docs", "docs:build": "vitepress build .docs", - "docs:preview": "vitepress preview .docs" + "docs:preview": "vitepress preview .docs", + "git":"git add . && git commit -m \"update\" && git push" }, "devDependencies": { "vitepress": "^1.1.4"