카테고리 없음

Markdown grammar

Roien 2021. 12. 19.
반응형

line

직선 line

--- (hyphens)
___ (underscores)
*** (asterisks)



titles

# 제목 1
## 제목 2
### 제목 3
#### 제목 4
##### 제목 5
###### 제목 6

제목 1

제목 2

제목 3

제목 4

제목 5
제목 6

1단계에서 6 단계까지 지정할 수 있다.

list

1. item 1
  1. sub item 1
  1. sub item 2
1. item 2
  1. item 1
    1. sub item 1
    2. sub item 2
  2. item 2
* item 1
  * sub item 1
* item 2
  • item 1
    • sub item 1
  • item 2

-, *, + 등을 사용할 수 있음

line break

'
'로 다음 줄 처리 가능

abc<br/>
def

abc

def

table

| column1 | column 2 |
|---|:---:|---:|

| column1 | column 2 |
|---|:---:|---:|

quote

> TEXT1
> TEXT2

TEXT1
TEXT2

nested quote

> DEPTH1
>> DEPTH2
>>> DEPTH3

DEPTH1

DEPTH2

DEPTH3

empahsis

1. Italic
*WORD*
_WORD_

2. bold
**WORD**
__WORD__

3. mix
**_WORD_**

4. cancel
~~WORD~~

5. underbar
<u>WORD</u>
  1. Italic

WORD
WORD

  1. bold

WORD
WORD

  1. mix

WORD

  1. cancel

    WORD

  2. underbar
    WORD

code

this is excerpted code: `CODE` 

this is excerpted code: CODE

```python
this is code block

```python
this is code block

link

<a> link

link

image

<img>
반응형

댓글