Skip to content

Latest commit

 

History

History
87 lines (66 loc) · 1.42 KB

markdown.md

File metadata and controls

87 lines (66 loc) · 1.42 KB

Markdown

Basic

Different type

B**ol**d or **bold** __bold__  
i*ta*lic and _same_  
B***old***italic and ___same___ and _**more**_  
`mono` code

Bold or bold bold
italic and same
Bolditalic and same and more
mono code

Lists


- no
+ order
* can use `+-*`
9. start
2. from
1. first
0. number

    intended
    9. list
    
    1. should
    0. start from 1
    - emmm
  • no
  • order
  • can use +-*
  1. start

  2. from

  3. first

  4. number

    intended 9. list

    1. should
    2. start from 1
    • emmm

Block

> quote
>> inside

quote

inside


Code block use 4 space or wrapped by ``` `` ```  
If there are `` ` `` in your code, just use more `` ` ``s to wrap it.

Code block use 4 space or wrapped by ``
If there are ` in your code, just use more `s to wrap it.


| Syntax on the left    | Description | Test Text on the right   |
| :---                  |    :-:      |                -------:  |
| Header                | Title       | Here's this              |
| Paragraph             | Text        | And more                 |
Syntax on the left Description Test Text on the right
Header Title Here's this
Paragraph Text And more