Get StartedCommunity
Search
No results
Enter to navigate
Up and Down keys select

Markdown

With Convention Routing any markdown files you put in ./src/pages will be transformed to a route and a page. e.g. ./src/pages/about.md available at /about route.

👈 At the left a table of contents is automatically generated. See Front Matter to enable, disable, or move to the right.

Blockquote

> Alpha bravo charlie.

Alpha bravo charlie.

break

With two spaces at the end.

one  
two  
three

one
two
three

With slashes

four\
five\
six

four
five
six

code

```js
function test() {
  console.liog("ok")
}
```
function test() {
  console.liog("ok")
}

Syntax highlighting is done by shiki module. Supported language syntax highlighting: https://shiki.style/languages

definition

[Alpha]: https://example.com
Alpha

Footnote definition

[^alpha]: bravo and charlie.
alpha

Footnote reference

[^alpha]

alpha

delete

GFM delete / strike

~spicy redacted~

spicy redacted

emphasis

*alpha* _bravo_

alpha bravo

heading

# heading1
## heading2
### heading3

html

<div style="border: 3px solid green">green html box</div>
green html box

image

![img alt](/favicon/favicon-16x16.png "img title")

img alt

imageReference

![alpha][bravo]

![alpha][bravo]

inlineCode

We like to `code` things.

We like to code things.

[Home](/)
[Home](/ "with title")

Home Home hover cursor

[alpha][Bravo]

[alpha][Bravo]

list

Unordered

+ Sally
+ Timmy
+ Oliver
  • Sally

  • Timmy

  • Oliver

Ordered

1. one
2. two
3. three
  1. one

  2. two

  3. three

Checks (fix me)

+ [ ] Things
+ [x] I want
+ [ ] To do
  • Things

  • I want

  • To do

paragraph

Alpha bravo charlie.

Alpha bravo charlie.

root

Root is a collection of other nodes.

strong

**alpha** __bravo__

alpha bravo

text

Alpha bravo charlie.

Alpha bravo charlie.

thematicBreak

Asterisks

***

Dashes

---

table

| left aligned | centered | right aligned |
| :-- | :-: | --: |
| 👈 | 😎 | 👉 |
left alignedcenteredright aligned
👈😎👉
made by us