할머니의 콤퓨타 도전기
마크다운(Markdown) 작성법 본문
Markdown Syntax
Will be updated continuously
Contents
- Header
- List
- Emphasis
- Links
- Images
- Inline Code
- Code Block
- Table
- Blockquote
- Horizontal Rule
- Line Break
Header
# header1 //글씨 크기 가장 큼
## header2
### header3
#### header4
##### header5
###### header6
header1
header2
header3
header4
header5
header6
List
1. 순서가 필요한 list
- 순서가 필요없는 sublist
- 순서가 필요없는 list에 사용가능한 기호
-(hyphen), +(plus sign), *(asterisk)
- 순서가 필요한 list
- 순서가 필요없는 sublist
- 순서가 필요없는 list
Emphasis
*italic* or _italic_
**bold** or __bold__
**_italic and bold_**
~~strikethrough~~
<u>underline</u>
italic or italic
bold or bold
italic and bold
strikethrough
underline
Links
[Google](https://google.com)
Images
![alternative text](image link)
Inline Code
`inline code`
inline code
Code Block
Enter ` 3 times
code block
Enter ` 3 times
code block
Table
헤더 셀 구분 ---(hyphen)
셀 안의 내용 정렬 :(colon)
셀 구분 |(vertical bar)
자료형| 메모리 크기 |값의 범위
---|:---:|---:
`int`|4byte|-2,147,483,648 ~ 2,147,483,647
자료형 | 메모리 크기 | 값의 범위 |
---|---|---|
int |
4byte | -2,147,483,648 ~ 2,147,483,647 |
Blockquote
> blockquote
>> nested blockquote
blockquote
nested blockquote
Horizontal Rule
--- (hyphens)
*** (asterisks)
___ (underscores)
Line Break
hello <-- 2 spaces
world
hello
world
'Git' 카테고리의 다른 글
github 사용법 (0) | 2020.07.31 |
---|
Comments