Added automatically generating banner cards for each md page file that has

---
banner_title: "..."
banner_description: "..."
---
This commit is contained in:
Relism
2024-12-23 22:40:08 +01:00
parent 1d908ae2eb
commit 6b96bf7102
31 changed files with 28645 additions and 124 deletions
+3
View File
@@ -2,6 +2,9 @@
next:
text: 'Installation'
link: '/flash/installation'
banner_title: "Flash - A Modern Web Framework"
banner_description: "Flash is a fast and expressive web framework written in Java."
---
# ⚡ Flash
+5
View File
@@ -1,3 +1,8 @@
---
banner_title: "Flash - Installation"
banner_description: "A guide on how to install the Flash library in your project."
---
<script setup>
import { ref, onMounted } from 'vue';
-85
View File
@@ -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).
+5
View File
@@ -1,3 +1,8 @@
---
banner_title: "Flash - Server Types Guide"
banner_description: "Illustrating the main differences between the internal server instance and the FlashServer instance."
---
# Server Types
In this section, we discuss the differences between the internal server instance `InternalFlashServer` and the `FlashServer` instance, and whether you should use one or the other. We will also provide examples of how to use each type of server.