diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-04-07 01:25:07 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-04-07 01:25:07 -0700 |
| commit | 3e02c262c7147fc6242c0ad061da0b7a7078c110 (patch) | |
| tree | 9036047b318df0e9c9c15421d81f6edfa8c0091a /markdown-examples.md | |
| parent | c95c0a56cd994ff09c3aee767949a88752642409 (diff) | |
remove example md files
Diffstat (limited to 'markdown-examples.md')
| -rw-r--r-- | markdown-examples.md | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/markdown-examples.md b/markdown-examples.md deleted file mode 100644 index f9258a5..0000000 --- a/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). |
