[Markdown] 마크다운 표(Table) 입력하는 법
포스트
취소

[Markdown] 마크다운 표(Table) 입력하는 법

마크다운 Markdown 표(Table) 입력

마크다운 문법 Syntax

마크다운 문법 참고 사이트

표 (Table) 입력 방법

파이프(|), 하이픈(-) 을 이용하여 column들과 헤더를 생성 및 구분할 수 있다.

1
2
3
4
| First Header | Second Header |
| ------------ | ------------- |
| Content Cell | Content Cell  |
| Content Cell | Content Cell  |
First HeaderSecond Header
Content CellContent Cell
Content CellContent Cell

테이블 양쪽 끝에 있는 파이프(|) 는 없어도 된다. (하지만 있는 게 더 보기 쉽다.)

셀 너비는 내용에 맞게 알아서 정해지므로 굳이 Markdown 소스 상에서 맞추지 않아도 된다.

헤더를 구분할 때는 - 를 각 column에 3개 이상 사용해야한다.

1
2
3
4
| Command    | Description                                    |
| ---------- | ---------------------------------------------- |
| git status | List all new or modified files                 |
| git diff   | Show file differences that haven't been staged |
CommandDescription
git statusList all new or modified files
git diffShow file differences that haven’t been staged

표 내부 서식 및 정렬 방법

서식 적용 방법

표 내에서도 링크, 인라인 코드, 텍스트 스타일과 같은 서식을 기본적으로 사용 가능하다.

1
2
3
4
| Command      | Description                                        |
| ------------ | -------------------------------------------------- |
| `git status` | List all *new or modified* files                   |
| `git diff`   | Show file differences that **haven't been** staged |
CommandDescription
git statusList all new or modified files
git diffShow file differences that haven’t been staged

정렬 방법

헤더 행의 하이픈-의 오른쪽, 왼쪽, 양쪽에 콜론:을 포함시켜서 오른쪽, 왼쪽, 중앙 정렬할 수 있다.

1
2
3
4
| Left-aligned | Center-aligned | Right-aligned |
| :----------- | :------------: | ------------: |
| git status   |   git status   |    git status |
| git diff     |    git diff    |      git diff |
Left-alignedCenter-alignedRight-aligned
git statusgit statusgit status
git diffgit diffgit diff

추가 사항

파이프를 셀 내용에 포함시키려면 이스케이프\를 사용하면 된다.

1
2
3
4
| Name     | Character |
| -------- | --------- |
| Backtick | `         |
| Pipe     | \|        |
NameCharacter
Backtick`
Pipe|
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.

[Linux] screen 명령어 사용법(터미널 가상화?)

[Make] make 할 때 컴파일 속도 향상법(make -j)