1 분 소요

Markdown 특징

  • 텍스트 기반 마크업 언어로 문법이 간단한 것이 특징
  • 가독성이 좋음
  • README 파일이 모두 markdown으로 작성
  • 특별한 형태의 에디터가 필요없고, 파일사이즈가 작음

Markdown 문법

1. 줄 바꿈

  • 기본적으로 줄 바꿈 인식을 하지 않음
  • 라인 끝에 스페이스를 2번 표기

2. 강요 표시

  • *single asterisks* → single asterisks
  • _single underscores_→ single underscores
  • **double asterisks** → double asterisks
  • __double underscores__ → double underscores

3. 글머리 달기

  • # This is a Heading1
  • ## This is a Heading2
  • ### This is a Heading3
  • #### This is a Heading4

4. 인용

  • > This is a blockquote.
  • >> This is a 2nd blockquote.
  • >>> This is a 3rd blockquote.

5. 코드 인용

function test() {
    console.log("notice the blank line before this function?");
}
int main() {
    int y = SOME_MACRO_REFERENCE;
    int x = 5 + 6;
    cout << "Hello World! " << x << std::endl();
}

6. 수평선

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

7. 링크

# 표시법: [Title](link)
[Google 페이지](https://google.com)

# 주소 직접 표시법
<https://google.com>

# 이미지 삽입
![](image 경로)
![](image 경로){: .align-center}
![이미지 이름](image 경로 "이미지 이름"){: .align-center}

8. 표 만들기

| 항목 | 가격 | 개수 |
|:---:|:----:|:----|
| A | 1000원 | 1개 |
| B | 900원 | 2개 |

참고

https://devinlife.com/


This is personal diary for study documents.
Please comment if I'm wrong or missing something else 😄. 

Top

댓글남기기