Outline
Use #
to write outline
example
# h1
## h2
### h3
#### h4
##### h5
###### h6
result
h1
h2
h3
h4
h5
h6
Math mode
Use $$
to write math type text.
example
$$
A = bx + c
$$
result
$$
A = bx + c
$$
Itemize
Use *
to itemize.
example
* How to use Itemize
* Using `"*"`
```
#### result
> * How to use Itemize
> * Using `"*"`
But if you use Typora, You only have to write `*` once.
#### example 2
Use `+`
```md
+ use itemize by using `+`
+ I think it's nice choice to use `+`
```
#### result
> + use itemize by using `+`
> + I think it's nice choice to use `+`
#### example 3
Use `-`
```md
- use itemize by using `-`
- I think it's difficult to use `-`
```
#### result
> - use itemize by using `-`
> - I think it's difficult to use `-`
### enumerate
Use number and period to write enumerate itemize.
#### example
```md
1. Using number.
2. Write a period.
3. It need space between period and sentence.
```
#### result
> 1. Using number.
> 2. Write a period.
> 3. It need space between period and sentence.
But if you use Typora, You only have to write `1.`.
## Horizontal line
Use `*` or `-` or `_`.
Connect item 3 times or more, then u can write horizontal line.
### example
```
Using horizontal line.
***
There is so good things to reed easily.
----
Is this good?
_____
```
### result
> Using horizontal line.
>
> ***
>
> There is so good things to reed easily.
>
> ----
>
> Is this good?
>
> _____
## Check box
Use `-` and `[]` to make check box.
### example
```md
- [x] Check don't you have a fever.
- [ ] Check your item list.
- [ ] It's easy to write.
```
### result
>
> - [x] Check don't you have a fever.
> - [ ] Check your item list.
> - [ ] It's easy to write.
## Table of list
Use `|` and to make table
And using `-` to define char space.
If you want to write Centering, using `:` at the start and end of the `-`.
If you want to write Right justified, using `:` at the end of the `-`.
### example
```md
| い | ろ | は |
| ---- | :--: | ---: |
| 1 | 2 | 3 |
| Is | it | easy? |
```
### result
> | い | ろ | は |
> | ---- | :--: | ---: |
> | 1 | 2 | 3 |
> | Is | it | easy? |
## Decoration
### example
```md
**bold**
*Italic*
_Italic_
~~miss~~
```
### result
> **bold**
> *Italic*
> _Italic_
> ~~miss~~
## Link
Use `[How it read](URL)`
### example
```md
[Here](https://yuto-34.github.io/) is my HP.
```
### result
> [Here](https://yuto-34.github.io/) is my HP.
## Image
Equal as Link, use pass instead of URL.
If u write `!` before the `[]`, image is put on there.
### example
```md
[This](https://yuto-34.github.io/favicons/cherry.jpg) is my HP favicon.

```
### result
> [This](https://yuto-34.github.io/favicons/cherry.jpg) is my HP favicon.
> 
## Quote
Using `>` to quote.
### example
```md
> Markdownで引用を表現するときにはEメールと同じ方法で`>`を用います。
> もしあなたがEメールで引用をすることになじんでいるのであればMarkdownでの使用は容易です。
```
### result
> > Markdownで引用を表現するときにはEメールと同じ方法で`>`を用います。
> > もしあなたがEメールで引用をすることになじんでいるのであればMarkdownでの使用は容易です。
> >
> > [引用元](https://gist.github.com/wate/7072365)
---
Typora makes it easy to write mark down style.
It is good things to write a docs.