[MarkDown] MarkDown 문법 사용방법

2021. 1. 17. 16:09카테고리 없음

728x90

[ Heading ]

# Heading1

## Heading2

### Heading3

#### Heading4

##### Heading5

###### Heading6

Heading1

Heading2

Heading3

Heading4

Heading5
Heading6

[ Line ]

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.


[ Queote ]

>This is the Queote.

This is the Queote.


[ Bullet List ]

Fruits:

*apple

*mango

Other Fruits:

-orange

-lemon

Numbered List:

1. first

2. fsecond

3. third

Fruits:

  • apple
  • mango

Other Fruits:

  • orange
  • lemon

Numbered List:

  1. first

  2. fsecond

  3. third


[ Link ]

Click [here](https://www.naver.com/)


[ Image ]

![image description]( 이미지 링크 )


[ Table ]

|Header|Description|

|--:|--:| 오른쪽정렬

|:--|:--| 왼쪽정렬

|:--:|:--:| 가운데정렬

|Cell1|Cell2|

|Cell1|Cell2|

|Cell1|Cell2|

Header Description
Cell1 Cell2
Cell1 Cell2
Cell1 Cell2

[ Code ]

` ` 감싸면 한 줄일 경우)

``` 감싸면 여러줄일 경우

To print message in the console, use `console.log('your message')` and ..

```java

console.log('your message')

console.log('your message')

```

To print message in the console, use console.log('your message') and ..

console.log('your message')

console.log('your message')

참고 :

드림코딩 by 엘리 유튜브 www.youtube.com/watch?v=kMEb_BzyUqk

728x90