마크다운 문법

마크다운 사용을 위한 문법 정리

Featured image

자주 쓰는 마크다운 문법


Header 제목

# 제목 1 This is H1
## 제목 2 This is H2
### 제목 3 This is H3
#### 제목 4 This is H4
##### 제목 5 This is H5
###### 제목 6 This is H6

Line Breaks 줄바꿈

Say, can you see
By the dawn’s early light
What so proudly we hailed
At the twilight’s last gleaming?

Say, can you see<br>
By the dawn's early light<br>
What so proudly we hailed<br>
At the twilight's last gleaming?<br>

Horizontal Rule 수평선

Emphasis 강조법

This is Italic

This is Bold

~~This is Canceled~

_This will be Bold and ~Italic~

_This is Italic_

**This is Bold**

~~This is Canceled~~

_This *will* be Bold and ~Italic~


Blockquote 인용구

As Bill Gates said:

“Your most unhappy customers are your greatest source of learning.”

This is 2nd Blockquote.

This is 3rd Blockquote.

As Bill Gates said:
“Your most unhappy customers are your greatest source of learning.”
This is 2nd Blockquote.
This is 3rd Blockquote.

Test

*list 123

# Test
*list
`123`

List 리스트

순서가 없는 리스트

늑대의 생물 분류

늑대의 생물 분류
* 동물계
  * 척삭동물문
    * 포유강
      * 식육목

개족

  + 개족
    + 개속
      + 회색늑대
        + 유라시아 늑대
        + 딩고
        +        + 인도늑대
        + 히말라야 늑대
        + 한국 늑대

순서가 있는 리스트

1.자바
2.파이썬
3.루아
4.PHP

1.자바
5.파이썬
3.루아
6.PHP
  
### 혼종 리스트
1. 스타크래프트
   * 테란
   * 저그
       * 감염된 테란
2. UED
   - 제라드 듀갈
   - 알렉세이 스투코프  
     a. 감염된 스투코프

```markdown
1. 스타크래프트
   * 테란
   * 저그
       * 감염된 테란
2. UED
   - 제라드 듀갈
   - 알렉세이 스투코프  
     a. 감염된 스투코프

백슬래시 이스케이프. 특수문자표기

* 특수문자 미출력
- 특수문자 미출력
\* 특수문자 출력
\- 특수문자 출력
\+ 특수문자 출력

Insert image 이미지 삽입.

- 태그로 이미지 사이즈 조절법


`<img src="https://raw.githubusercontent.com/leesemin89/blog/master/img/google%20logo.webp" width="200" height="100" />`
  [Google](https://google.com "구글")
  [Github](https://naver.com "네이버")
  [Yahoo](https://yahoo.com "야후")
[클릭하면500원](https://youtube.com)
  [1. Headers](##-Header-제목)

  [2. Image](##-List-리스트)

  [3.Blockquotes](##-Blockquote-인용구)

CodeBlock 코드 블럭

System.out.println(“Hello, World”);
num = 1;
num2 = 2;
sum = num+num2;
System.out.println(sum);

System.out.println("Hello, World");
int num = 1;
int num2 = 2;
int sum = num+num2;
System.out.println(sum);

Checklist 체크리스트

-[x] Task1 is completed.
-[ ] Task2 is incompleted.

Table 테이블

테이블1

헤더1 헤더2 헤더3 헤더4 헤더5
셀1 셀2 셀3 셀4 셀5
셀6 셀7 셀8 셀9 셀10
셀11 셀12 셀13 셀14 셀15

테이블1  
헤더1|헤더2|헤더3|헤더4|헤더5
---|---|---|---|---
셀1|셀2|셀3|셀4|셀5
셀6|셀7|셀8|셀9|셀10
셀11|셀12|셀13|셀14|셀15

테이블2 정렬

헤더1 헤더2 헤더3
1 2 3
4 5 6
7 8 9
10 11 12
테이블2 정렬

헤더1|헤더2|헤더3
:---|:---:|---:
1|2|3
4|5|6
7|8|9
10|11|12


Comment 주석처리법

  <!--
  주석 입력 테스트
  -->

Footnote 각주처리

이 마크다운 작성법은 해당 블로그를 참조하였습니다.[^1] [^1]: 블로그

이 마크다운 작성법은 해당 블로그를 참조하였습니다.[^1]
[^1]: [블로그](http://taewan.kim/post/markdown/)