Overview
- Kakao tech blog를 fork하여 사용합니다.
- Markdown 문법이 사용되므로 Markdown의 기본 문법을 정리합니다.
Index
MarkDown
-
-
-
Default Syntax
Example
# Heading level 1 ## Heading level 2 ### Heading level 3 #### Heading level 4 ##### Heading level 5 ##### Heading level 6
Result
Heading level 1
Heading level 2
Heading level 3
Heading level 4
Heading level 5
Heading level 6
-
Alternate Syntax
Example
Heading level 1 =============== Heading level 2 ---------------
-
-
-
Nested Numbering List
Example
1. First 1. Nested First 2. Second 3. Third
Result
- First
- Nested First
- Second
- Third
- First
-
Nested Not Numbered List
Example
* One * One-One * One-One-One * One-Two * Two * Three - Four - Four-One - Four-One-One - Four-Two - Five - Six
Result
- One
- One-One
- One-One-One
- One-Two
- One-One
- Two
-
Three
- Four
- Four-One
- Four-One-One
- Four-Two
- Four-One
- Five
- Six
- One
-
Definition Lists
Example
First Term : This is the definition of the first term. Second Term : This is one definition of the second term. : This is another definition of the second term.
Result
- First Term
- This is the definition of the first term.
- Second Term
- This is one definition of the second term.
- This is another definition of the second term.
-
-
-
Table
Example
| First Column | Second Column | Third Column | Fourth Column | |---|:---|---:|:---:| < Align > | Normal | Left-Align | Right-Align | Center-Align | | Normal | Left-Align | Right-Align | Center-Align | | Normal | Left-Align | Right-Align | Center-Align | | Normal | Left-Align | Right-Align | Center-Align |
Result
First Column Second Column Third Column Fourth Column Normal Left-Align Right-Align Center-Align Normal Left-Align Right-Align Center-Align Normal Left-Align Right-Align Center-Align Normal Left-Align Right-Align Center-Align
-
-
-
Link
Example
* 이것은 각주입니까?[^1] * 안녕하세요. 첫 링크는 [구글](https://google.com) 입니다. [^1]: 각주1. 설명을 써주세요.
Result
-
Link Add Title
Example
* 안녕하세요. 두번째 링크는 [구글](https://google.com "Google") 입니다.
Result
- 안녕하세요. 두번째 링크는 구글 입니다.
-
Task Lists
Example
- [x] ReadMe 작성 - [ ] PC Logo - [ ] Mobile Logo - [ ] Favico - [ ] Markdown Css Customize
Result
- ReadMe 작성
- PC Logo
- Mobile Logo
- Favico
- Markdown Css Customize
-
-
-
Bold
Example
* 이것을 **Bold** 입니다.
Result
- 이것은 Bold 입니다.
-
Italic
Example
* 이것은 *Italic* 입니다.
Result
- 이것은 Italic 입니다.
-
Bold & Italic
Example
* 이것은 ***Bold & Italic*** 입니다.
Result
- 이것은 Bold & Italic 입니다.
-
Strikethrough
Example
- [x] ~~ReadMe 작성~~ - [ ] PC Logo - [ ] Mobile Logo - [ ] Favico - [ ] Markdown Css Customize
Result
ReadMe 작성- PC Logo
- Mobile Logo
- Favico
- Markdown Css Customize
-
-
-
BlockQuotes with Multiple paragrahs
Example
\> First BlockQuotes \> \> Second BlockQuotes
Result
First BlockQuotes
Second BlockQuotes
-
Nested BlockQuotes
Example
\> First BlockQuotes \> \>> Second BlockQuotes
Result
First BlockQuotes
Second BlockQuotes
-
-
-
Images
Example
![Alt Tag](/assets/images/Wake.Alan.jpg "Title AlanWake Photo")
Result
-
-
-
Fenced Code Blocks
Example
\``` { "firstName": "Alan", "lastName": "Wake", "age": 29 } \```
Result
{ "firstName": "Alan", "lastName": "Wake", "age": 29 }
-
Fenced Code Blocks
Example
\```Json { "firstName": "Alan", "lastName": "Wake", "age": 29 } \```
Result
{ "firstName": "Alan", "lastName": "Wake", "age": 29 }
-
-
- Horizontal Rule
Example
Three or more... --- Hyphens *** Asterisks ___ Underscores ---
Result
Three or more…
Hyphens
Asterisks
Underscores
- Horizontal Rule
-
- https://www.markdownguide.org 를 참고하여 작성함.
- https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet 를 참고하여 작성함.
-
각주1. 설명을 써주세요. ↩