Markdown
< Heading >
Code
# Heading 1
Heading 1
==
## Heading 2
Heading 2
--
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Result
Heading 1
Heading 1 ==
Heading 2
Heading 2 –
Heading 3
Heading 4
Heading 5
Heading 6
< Line >
Code
___
***
---
Result
< New Line >
Code
<br/><br/> // for sequencial
space 2 times at end of the line
< Text >
Code
__bold__
**bold**
_italic_
*italic*
~strikethrough~
~~strikethrough~~
Result
bold
bold
italic
italic
~strikethrough~
strikethrough
< Quote >
Code
> Quote
>> Quote overlap 1
>>> Quote overlap 2
Result
Quote
Quote overlap 1
Quote overlap 2
< Numbered List >
Code
Numbers:
1. first
2. secend
3. third
Result
Numbers:
- first
- secend
- third
< unNumbered List >
Code
code with (-, *, +)
- first
* second
+ third
Result
code with (-, *, +)
- first
- second
- third
- second
< Block >
tab 2times at first of the line
< Link >
Code
Click [here](https://tehyoyee.github.io/)
Click here
< Image >
Code

Result
< Table >
Code
|Header|Description|
|:--:|:--:|
|Cell1|Cell2|
|Cell1|Cell2|
|Cell1|Cell2|
|Cell1|Cell2|
// : is alignment
Result
|Header|Description| |:–:|:–:| |Cell1|Cell2| |Cell1|Cell2| |Cell1|Cell2| |Cell1|Cell2|
< Color >
Code
<span style="color:red">red</span>
<span style="color:#d3d4d3">#d3d3d3</span>
<span style="color:rgb(0, 190, 255)">rgb</span>
red
#d3d3d3
rgb
< Check Box >
Code
- [ ] unChecked Box
* [x] Checked Box
Result
- unChecked Box
- Checked Box
< Code >
Code
inline `inline code`
```C
int main(void);
```
Result
inline inline code
int main(void);
댓글남기기