문단구분
문단을 구분하려면 2줄 이상의 빈줄이 있거나 2칸 이상의 빈칸을 두면 줄 개행이 가능하다.
또한 <br> 태그를 써도 된다.
제목
헤더 크기 (h1)
헤더 크기 (h2)
헤더 크기 (h3)
헤더 크기 (h4)
헤더 크기 (h5)
해더 크기 (h6)
# 헤더 크기 (h1)
## 헤더 크기 (h2)
### 헤더 크기 (h3)
#### 헤더 크기 (h4)
##### 헤더 크기 (h5)
###### 해더 크기 (h6)
#의 갯수에 따라 글자의 크기가 달라진다 하나가 가장 크고 6개가 가장 작다
목록사용법
Unordered
- Item 1
- Item 2
- Item 2a
- Item 2b
Ordered
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
unodered는 *을 붙여 사용한다 odered는 숫자를 붙여 사용한다
이미지 삽입
첫번째 방법
![Github logo](/images/이미지.jpg)
두번째 방법
<img src=”https://github.com/..각자절대경로../images/이미지.jpg” width=”400px” alt=”sample image”>
하이퍼링크
GitHub
[GitHub](http://github.com “깃허브”)
코드 블록
해당 언어를 쓰면 인식한다
int main() {
int a;
cin >> a;
cout << a;
}
```c++
int main() {
int a;
cin » a;
cout « a;
}
```
인용상자
As Grace Hopper said:
I’ve always been more interested.
in the future than in the past.
> I’ve always been more interested.
> in the future than in the past.
강조
This text will be italic
*This text will be italic*
This will also be italic
_This will also be italic_
This text will be bold
**This text will be bold**
This will also be bold
__This will also be bold__
You can combine them
*You **can** combine them*
체크박스
- this is a complete item
- this is an incomplete item
- @mentions, #refs, links, formatting, and
tagssupported - list syntax required (any unordered or ordered list supported)
- [x] this is a complete item
- [ ] this is an incomplete item
- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported
- [x] list syntax required (any unordered or ordered list supported)
인라인 코드
문단 중간에 Code
를 넣을 수 있다.
예를 들어 printf("hello world!");
이런 식으로 들어간다.
문단 중간에 `Code`를 넣을 수 있다.
예를 들어 `printf(“hello world!”);` 이런 식으로 들어간다.