1. Heading 실습
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Paragraph
작성 방법
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Paragraph
2. Line 실습
작성 방법
---
3. Text attributes 실습
This is the bold text and this is the italic text and let's do
strikethrough
.
작성 방법
This is the **bold** text and this is the _italic_ text and let's do ~~strikethrough~~.
4. Quote 실습
Don't forget to code your dream.
작성 방법
> Don't forget to code your dream.
5. Bullet list 실습
- one
- two
- three
- four
작성 방법
- one
- two
* three
* four
6. Numbered list 실습
Numbers:
- first
- second
- third
작성 방법
Numbers:
1. first
2. second
3. third
7. Link 실습
Click here
작성 방법
Click [here](https://myoung-min.tistory.com/)
8. Image 실습
작성 방법
![image description](https://user-images.githubusercontent.com/61736137/102153953-b2881000-3ebb-11eb-9581-7026bc8e169e.jpg)
9. Table 실습
Header | Description |
---|---|
Cell1 | Cell2 |
Cell3 | Cell4 |
Cell5 | Cell6 |
작성 방법
<!-- :의 위치로 왼쪽, 오른쪽, 가운데 정렬이 적용된다. -->
| Header | Description |
| :----: | :---------: |
| Cell1 | Cell2 |
| Cell3 | Cell4 |
| Cell5 | Cell6 |
10. Code 실습
<!-- 문서 안에서 특정 코드를 보여주고 싶을 때 -->
<!--`(백틱키)로 감싸 인라인 형태를 만들거나, 3개로 감싸 코드 블록을 생성 -->
<!-- 백틱키 3개 뒤에 해당 언어를 적으면 그 언어에 맞게 하이라이트 된다. -->
To print message in the console, use console.log('your message')
and ..
console.log("hello");
https://github.com/Myoungmin/Markdown
GitHub - Myoungmin/Markdown
Contribute to Myoungmin/Markdown development by creating an account on GitHub.
github.com