Post
새소식
- Chirpy Theme 7.2.0 업데이트

Chirpy Theme에서 사용하는 마크다운 문법을 알아보자

Chirpy Theme에서 사용하는 마크다운 문법을 알아보자

자세한 내용은 Chirpy Theme 공식 사이트에서 제공하는 가이드를 참고하자.

해더

1
# H1 - heading

H1 - heading

1
# H2 - heading

H2 - heading

1
# H3 - heading

H3 - heading

1
# H4 - heading

H4 - heading

리스트

순서가 있는 목록

1
2
3
4
5
6
7
Ordered list

1. 첫번째
	1. 첫번째 - 1
	2. 첫번째 - 2
2. 두번째
3. 세번째
  1. 첫번째
    1. 첫번째 - 1
    2. 첫번째 - 2
  2. 두번째
  3. 세번째

순서가 없는 목록

1
2
3
4
5
6
7
8
Unordered list

- 사과
	- 부사
	- 홍옥
-	- 단감
	- 대봉
  • 사과
    • 부사
    • 홍옥
    • 단감
    • 대봉

할 일 목록

1
2
3
- [ ] 할일 목록
	- [x] 우유 사기
	- [ ] 전기세 납부
  • 할일 목록
    • 우유 사기
    • 전기세 납부

설명 목록

1
2
3
4
5
오전
: 오전 또는 상오로 0시부터 12시까지 시간이다.

오후
: 오후 또는 하오로 12시부터 24시까지 시간이다.
오전
오전 또는 상오로 0시부터 12시까지 시간이다.
오후
오후 또는 하오로 12시부터 24시까지 시간이다.

인용문

1
> 인용문 예제입니다.

인용문 예제입니다.

프롬프트

마크다운에서는 callout 문법이다.

1
2
3
4
5
6
7
8
9
10
11
> An example showing the `tip` type prompt.
{: .prompt-tip }

> An example showing the `info` type prompt.
{: .prompt-info }

> An example showing the `warning` type prompt.
{: .prompt-warning }

> An example showing the `danger` type prompt.
{: .prompt-danger }

An example showing the tip type prompt.

An example showing the info type prompt.

An example showing the warning type prompt.

An example showing the danger type prompt.

1
2
3
4
5
| Company                      | Contact          | Country |
|:-----------------------------|:-----------------|--------:|
| Alfreds Futterkiste          | Maria Anders     | Germany |
| Island Trading               | Helen Bennett    | UK      |
| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy   |
CompanyContactCountry
Alfreds FutterkisteMaria AndersGermany
Island TradingHelen BennettUK
Magazzini Alimentari RiunitiGiovanni RovelliItaly

링크

1
<http://127.0.0.1:4000>

http://127.0.0.1:4000

각주

1
첫 번째 각주[^footnote1]이고, 이건 두번째 각주[^footnote2]이다..

첫 번째 각주1이고, 이건 두번째 각주2이다.

인라인 코드

1
`1+2` = `3`이다. 

1+2 = 3이다.

이미지

1
2
![Desktop View](https://chirpy-img.netlify.app/posts/20190808/mockup.png){: width="972" height="589" }
_Full screen width and center alignment_

Desktop View Full screen width and center alignment

코드 블록

```
코드 블록 예제입니다.
```
1
코드 블록 예제입니다.

각주

  1. 첫 번째 각주 ↩︎

  2. 두 번째 각주 ↩︎

This post is licensed under CC BY 4.0 by the author.