Skip to main content

Markdown DEMO

About 1 minCookbookMarkdownDemoMarkdown

Heading
# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6
Text

This sentence has bold, italic and delete style text.

This sentence has **bold**, _italic_ and ~~delete~~ style text.
Paragraph

This is a paragraph.

This is another paragraph.

This is a paragraph.

This is another paragraph.
Line Break

I would like to line break at
this point or
this point

I would like to line break at  
this point or\
this point
Blockquotes

Blockquotes can also be nested...

...by using greater-than signs right next to each other...

...or with spaces between arrows.

> Blockquotes can also be nested...
>
> > ...by using greater-than signs right next to each other...
> >
> > > ...or with spaces between arrows.
Unordered List
  • Create a list by starting a line with -

  • Make sub-lists by indenting 2 spaces:

    • Marker character change forces new list start:

      • Ac tristique libero volutpat at

      • Facilisis in pretium nisl aliquet

      • Nulla volutpat aliquam velit
        link break

        New paragraph

  • It's easy!

- Create a list by starting a line with `-`
- Make sub-lists by indenting 2 spaces:

  - Marker character change forces new list start:

    - Ac tristique libero volutpat at
    - Facilisis in pretium nisl aliquet
    - Nulla volutpat aliquam velit  
      link break

      New paragraph

- It's easy!
Ordered List
  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
    line break
    line break again
  3. Integer molestie lorem at massa
1. Lorem ipsum dolor sit amet
1. Consectetur adipiscing elit  
   line break\
   line break again
1. Integer molestie lorem at massa
HR

---
Link
[Home page using absolute path](/)

[Home page using relative path](../../README.md)
Other links supported in VuePress
- [Home page-Can route when editing Markdown file](../../README.md)

- [Home page using absolute path 2](/README.md)

- [Visit in HTML](../../index.html)
Image
Logo
Logo
![Logo](/logo.png)
Emoji

Classic:

😉 😢 😆 😋

Shortcuts:

😎 😃 :* 😦 😃 😦 😉

Classic:

:wink: :cry: :laughing: :yum:

Shortcuts:

8-) :) :\* :( :-) :-( ;)

Tips

For more see emoji list

Tables
centerrightleft
For center align use :-:For right align use -:For left align use :-
baaaaaaaaaaaaa
caaaaa
|           center           |                    right | left                    |
| :------------------------: | -----------------------: | :---------------------- |
| For center align use `:-:` | For right align use `-:` | For left align use `:-` |
|             b              |                aaaaaaaaa | aaaa                    |
|             c              |                     aaaa | a                       |
Codes

Inline Code: code

Indented code:

// Some comments
line 1 of code
line 2 of code
line 3 of code

Block code:

Sample text here...

Syntax highlighting:

var foo = function (bar) {
  return bar++;
};

console.log(foo(5));
Inline Code: `code`

Indented code:

    // Some comments
    line 1 of code
    line 2 of code
    line 3 of code

Block code:

```
Sample text here...
```

Syntax highlighting:

```js
var foo = function (bar) {
  return bar++;
};

console.log(foo(5));
```