Velogging 을 위한 간단한 마크다운 문법

Heath_Jeong·2021년 3월 4일
1

1. HTML headings

문법

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

결과

This is heading 1

This is heading 2

This is heading 3

This is heading 4

This is heading 5
This is heading 6

2. Bold Text

문법

**bold text**

결과

bold text


3. List

a) Unordered List

문법

- Coffee
- Tea
- Milk

결과

  • Coffee
  • Tea
  • Milk

b) Ordered List

문법

1. Coffee
2. Tea
3. Milk

결과

  1. Coffee
  2. Tea
  3. Milk

4. Hyperlink

문법

[Heath.log](https://velog.io/@dldydldy75)

결과

Heath.log


5. Image

이미지 주소 사용

문법

![피카츄](https://images.vectorhq.com/images/previews/3fd/pikachu-psd-409017.png)

결과

로컬 이미지 사용

  • 로컬 이미지를 끌어 넣으면 velog 저장소에 저장이 되어 아래처럼 사용 가능

문법

![피카츄](https://velog.velcdn.com/images%2Fdldydldy75%2Fpost%2F9da99f9a-e305-4723-a479-12eea910be16%2F%E1%84%91%E1%85%B5%E1%84%8F%E1%85%A1%E1%84%8E%E1%85%B2.png)

결과


5. Table

문법

| Header 1  | Header 2 | Header 3 |
| :------- | :-------: | -------: |
| Content 1  | Content 2 | Content 3 |
| Content 1  | Content 2 | Content 3 |

결과

Header 1Header 2Header 3
Content 1Content 2Content 3
Content 1Content 2Content 3
profile
데이터로 문제를 해결하는 엔지니어를 꿈꿉니다.

0개의 댓글