[ markdown ] 마크다운 언어 사용 법

<Heading>

# Heading 1

##

###

####

....

-----------------------------------------------------------------

<Line>

___ >> 라인 추가(underline X 3)

-----------------------------------------------------------------

<Text attributes>

this is **bold** text

this is *italic* text

-----------------------------------------------------------------

<Quote>

> programming is good

-----------------------------------------------------------------

<Bullet list>

Fruits:

*🍓

*🍑

Other fruits:

-🍊

-🍒

-----------------------------------------------------------------

<Numbered list>

Numbers:

1. first

2. second

3. third

-----------------------------------------------------------------

<Link>

Click here (http:....)

 

-----------------------------------------------------------------

<Image>

![image description] (image link)

-----------------------------------------------------------------

<Table>

|Header|Description|

|--:|--:| >> 오른쪽 정렬 |:--:|:--:| >> 가운데 정렬

|Cell1|Cell2|

|Cell1|Cell2|

|Cell1|Cell2|

|Cell1|Cell2|

-----------------------------------------------------------------

<Code>

To print message in the console, use 'console.log('your message')' and ... >> 백틱을 이용하면 인라인 형태로 코드 입력 가능

```js

console.log('your message')

```

채널톡 아이콘