[마크다운] Markdown 작성법

naneun·2022년 1월 7일
0

Git

목록 보기
1/1
post-thumbnail

* 본 내용은 학습하면서 정리하는 글입니다. 계속 업데이트됩니다.

2020/01/08 - 최초 작성

1. Header

# H1
## H2
### H3
#### H4
##### H5
###### H6

텍스트(H1)

텍스트(H2)

텍스트(H3)

텍스트(H4)

텍스트(H5)
텍스트(H6)

2. Style

*글꼴 기울이기*
_글꼴 기울이기_

글꼴 기울이기
글꼴 기울이기

**굵은 글씨**
__굵은 글씨__

굵은 글씨
굵은 글씨

~~취소선~~

취소선

강제개행 - 공백 2번
단락바꿈 - Enter 2번

3. Blockquote

> quote

quote

> quote
>> subquote
>>> subsubquote

quote

subquote

subsubquote


4. List

1. first
2. second
3. third
  1. first
  2. second
  3. third
* 대분류
  * 중분류
    * 소분류
  • 대분류
    • 중분류
      • 소분류
+ 대분류
  + 중분류
    + 소분류
  • 대분류
    • 중분류
      • 소분류
- 대분류
  - 중분류
    - 소분류
  • 대분류
    • 중분류
      • 소분류
* depth1
  - depth2
    + depth3
      + depth4
  • depth1
    • depth2
      • depth3
        • depth4

5. Code Block

normal paragraph

    code block
  
end code block

normal paragraph

code block

end code block

normal paragraph
```
code block

```
end code block

normal paragraph

code block

end code block

```c

public void println(String msg) {
   System.out.println(msg);
}

```

public void println(String msg) {
    System.out.println(msg);
}

```java

public void println(String msg) {
   System.out.println(msg);
}

```

public void println(String msg) {
    System.out.println(msg);
}

6. UnderLine

***
* * *
----
- - -





7. Table

|th1|th2|th3|
|---|---|---|
|td1|td2|td3|
|td1|td2|td3|
|td1|td2|td3|
th1th2th3
td1td2td3
td1td2td3
td1td2td3
|:---| 왼쪽 정렬
|:---:| 가운데 정렬
|---:| 오른쪽 정렬
|th1|th2|th3|
|:---|:---:|---:|
|td1|td2|td3|
|td1|td2|td3|
|td1|td2|td3|
th1th2th3
td1td2td3
td1td2td3
td1td2td3

8. Link

  1. Reference Link
Grammar

[link keyword][id]
[id]: URL "Optional Title"
Example

Link: [Google][GoogleLink]
[GoogleLink]: https://google.com "GoogleLink"

Link: Google

  1. External Link
Grammar

[Title](link)
Example

[Google](https://google.com "GoogleLink")

Link: Google

  1. Auto Connect
Grammer
<>
Example

Link: <http://google.com>
Email: <addr@gmail.com>

Link: http://google.com
Email: addr@gmail.com

profile
riako

0개의 댓글