Skip to content

Basic Syntax

Heading

markdown
# h1 Heading
## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading

heading

Text style

markdown
**bold text**
*italicized text*

text-style

Blockquote

markdown
> blockquote

blockquote

Ordered List

markdown
1. First item
2. Second item
3. Third item

ordered-list

Unordered List

markdown
- First item
- Second item
- Third item

unordered-list

Code

markdown
`single line of code`
markdown
    ```js
    class Person(){
        #name = "Jhon Doe"
    }
    ```

code

markdown
[title](https://www.example.com)
![alt text](https://via.placeholder.com/150)

image

MIT Licensed