Markdown¶
Introduce¶
Github 및 다양한 플랫폼에서 텍스트를 스타일링하기 위한 문법입니다. 자주 사용하는 것들 위주로 정리하였으며, 이 외에 자세한 내용은 개발자 사이트를 참고하시길 바랍니다.
Paragraphs and Line Break
Markdown에서 개행은 문장 마지막에 공백(space)을 두번 입력하거나, Enter를 두번입력합니다.
Header¶
#
기호를 이용하여 글자 크기를 조절 할 수 있습니다.
# this is h1
## this is h2
### this is h3
#### this is h4
##### this is h5
###### this is h6
Tip
#
(h1), ##
(h2)는 자동으로 수평선(Horizontal)이 생성 됩니다.
Horizontal¶
수평선을 만들 수 있습니다.
*** (Asterisk)
--- (Hyphen)
___ (Underscore)
Blockquotes¶
인용문을 작성할때 사용합니다.
> Raise Your Weapon
>> DEADMAU5
Raise Your Weapon
DEADMAU5
Lists¶
*, +, - 모두 동일한 기능을 합니다. 숫자를 이용하여 목록을 만들 수 있으며, Ex2
, Ex3
의 결과는 모두 Ex1
과 동일합니다.
* Red
* Green
* Blue
+ Red
+ Green
+ Blue
- Red
- Green
- Blue
- Red
- Green
-
Blue
-
Red
- Green
- Blue
-
Red
- Green
- Blue
# Ex1
1. A
2. B
3. C
# Ex2
3. A
9. C
5. B
# Ex3
8. C
2. A
4. B
- A
- B
- C
Code Blocks¶
Grave Accent ( ` ) 와 Tilde ( ~ )를 이용합니다. Atom에서는 code 라고 입력한 후, Enter키를 이용하면 자동으로 코드 블록을 생성합니다. 사용된 언어를 명시하면, Syntax highlight가 활성화 됩니다.
~~~
Hello World
~~~
```
Hello World
```
```c
#include<stdio.h>
int main(int argc, char * argv[])
{
printf("Hello World!\n");
return 0;
}
```
Inline Blocks¶
텍스트 내용 중 일부에 코드 블록을 만들 수 있습니다. `를 사용합니다.
`Code` #Grave Accent ( ` )
text-text-text `some code` text-text-text
text-text-text some code
text-text-text
Images¶
Repository 경로와 외부에 위치한 이미지를 사용할 수 있습니다.
![TEXT](IMAGE_FILE_PATH)
![TEXT](IMAGE_URL)
Link¶
URL주소를 작성하면 자동으로 링크가되며, 다른 텍스트로 대체할 수 있습니다.
https://someurl.com
[TEXT](URL)
https://github.com/parkdongsam/project_apex
[PARK DongSam GitHub](https://github.com/parkdongsam/project_apex)
https://github.com/parkdongsam/project_apex
PARK DongSam GitHub
Emphasis¶
문자를 강조할 수 있습니다.
**Bold**
__Bold__
*Italic*
_Italic_
~~strikethrough~~
Bold
Bold
Italic
Italic
strikethrough
Tables¶
|(Pipe)를 이용하여 태두리를 구성하거나 :를 이용하여 정렬을 할 수 있습니다.
# 기본
Header 1 | Header 2
--------- | ---------
Content 1 | Content 3
Content 2 | Content 4
# 정렬
| Header 1 | Header 2 | Header 3 |
| :-------- | :--------: | --------: |
| Left | Center | Right |
Header 1 | Header 2 |
---|---|
Content 1 | Content 3 |
Content 2 | Content 4 |
Header 1 | Header 2 | Header 3 |
---|---|---|
Left | Center | Right |