Post

markdown_script

포스팅 시, 주로 사용하는 markdown 구문 정리

Lists

Ordered list

  1. 1st item
  2. 2nd item
  3. 3rd item

Unordered list

  • Chapter
    • Section
      • Paragraph

ToDo list

  • Job
    • Step 1
    • Step 2
    • Step 3

Description list

Sun
the star around which the earth orbits
Moon
the natural satellite of the earth, visible by reflected light from the sun

Block Quote

This line shows the block quote.

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.

Mathematics

Add post header math: true.

1
2
3
4
5
---
title: TITLE
...
math: true
---

Grammar is similar with LaTex.

줄바꿈 (테이블 내에서 줄바꿈할 때 유용)

1
<br>

일반 텍스트에서 줄바꿈

1
2
1. 문장 끝에 공백 2개 이상
2. \n바로 앞에 \을 한번 더 붙히기

블럭 인용구

1
>, >>, >>>, ..

링크

1
2
기본 링크 : [홈으로](https://www.irgroup.org/)
새창으로 : [홈으로 새창](https://www.irgroup.org/){:target="_blank"}

이미지

1
2
기본 형식 : ![설명](링크)
속성 부여 : ![설명](링크){:style="border:1px solid #eaeaea; border-radius: 7px; padding: 0px;" }

참고 : {} 사이에 html attribute를 마음대로 넣을 수 있다

참고문서

Chripy docs
kramdown syntax
kramdown 사용법
Front Matter

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