An open API service indexing awesome lists of open source software.

https://github.com/petrbroz/learnforge-vuepress-poc

Experimental version of Learn Forge tutorials using VuePress.
https://github.com/petrbroz/learnforge-vuepress-poc

Last synced: 6 months ago
JSON representation

Experimental version of Learn Forge tutorials using VuePress.

Awesome Lists containing this project

README

          

# Hello Forge

## Markdown

Here's some nice little Markdown features that VuePress provides

### Show/Hide Details

::: details Click me to view the code
```js
console.log('Hello, VuePress!')
```
:::

### Alerts

::: tip
This is a tip
:::

::: warning
This is a warning
:::

::: danger
This is a dangerous warning
:::

::: details
This is a details block
:::

### Code Groups

:::: code-group
::: code-group-item FOO
```js
const foo = 'foo'
```
:::
::: code-group-item BAR
```js
const bar = 'bar'
```
:::
::::