Markdown

Markdown is Awesome!

#Items

Markdown
- item 1
- item 2
- item 3
- item 4
  • item 1
  • item 2
  • item 3
  • item 4

#Quote

Markdown
> I ❤️ markdown.

I ❤️ markdown.

#Code Block

See next chapter

#HTML code

Plain
<span style={{ color: 'red' }}>dangerous</span>
dangerous

#Table

Markdown
| a   | b   | c   |
| --- | --- | --- |
| no  | yes | no  |
| yes | no  | yes |
abc
noyesno
yesnoyes

#Custom Components

There are custom components that can be used without separate import.

Box

HTML
<Box type="warning">This is warning</Box>
<Box type="info">This is info</Box>
<Box type="error">This is error</Box>
<Box type="tip">This is tip</Box>

WARNING

This is warning

INFO

This is info

ERROR

This is error

TIP

This is tip