Template

옵시디언

마크다운

가이드

옵시디언 마크다운 문법 정리

조회수 0
created by
avatar

닌자 M

헤딩(Heading)

제목을 만들려면 제목 텍스트 앞에 #을 추가할 수 있습니다. 최대 6개의 # 기호를 추가할 수 있고, #의 개수에 따라 제목의 크기가 결정됩니다.

👉 작성 방법

# This is a heading 1
## This is a heading 2
### This is a heading 3
#### This is a heading 4
##### This is a heading 5
###### This is a heading 6

✅ 결과

post content image


볼드체, 이탤릭체, 하이라이트

👉 작성 방법

  • 볼드체는 텍스트 앞뒤로 ** 또는 __를 넣어줍니다.
  • 이탤릭체는 텍스트 앞뒤로 * 또는 _를 넣어줍니다.
  • 줄긋기는 텍스트 앞뒤로 ~~를 넣어줍니다.
  • 하이라이트는 텍스트 앞뒤로 == 를 넣어줍니다.

✅ 결과

post content image


인용(Quotes)

텍스트 앞에 > 기호를 추가하여 텍스트를 인용할 수 있습니다.

👉 작성 방법

> Human beings face ever more complex and urgent problems, and their effectiveness in dealing with these problems is a matter that is critical to the stability and continued progress of society.
 
\- Doug Engelbart, 1961

✅ 결과

Human beings face ever more complex and urgent problems, and their effectiveness in dealing with these problems is a matter that is critical to the stability and continued progress of society.

  • Doug Engelbart, 1961

콜아웃

인용기호>[!text]를 함께 작성하면 콜아웃 기능을 사용할 수 있습니다. 콜아웃 커스텀 관련 커뮤니티 플러그인은 Admonition이 있습니다.

👉 작성방법

>[!info]
>옵시디언 콜아웃 만들기

✅ 결과

post content image


체크리스트(Task Lists)

작업 목록을 만들려면 - [ ]으로 생성합니다. 일반 텍스트를 체크리스트로 만들거나 체크리스트에 체크를 하려면 ctrl(cmd)+L 단축키를 사용할 수 있습니다.

👉 작성방법

- [x] 완료된 체크리스트
- [ ] 완료되지 않은 체크리스트

✅ 결과

post content image

💡 팁

괄호 안의 문자를 사용하여 완료로 표시할 수 있습니다.

👉 작성방법

- [x] Milk
- [?] Eggs
- [-] Eggs

✅ 결과

post content image

중첩리스트

아래와 같이 중첩된 리스트를 만들고 사용할 수 있습니다.

👉 작성방법

- [ ] Task item 1
	- [ ] Subtask 1
- [ ] Task item 2
	- [ ] Subtask 1

✅ 결과post content image


구분선(Horizontal rule)

아래 기호들을 입력 후 엔터를 입력하면 구분선을 사용할 수 있습니다.

👉 작성 방법

***
****
* * *
---
----
- - -
___
____
_ _ _

✅ 결과post content image


코드(Code)

한 줄 코드

백틱(쿼테이션)을 하나 사용하면 한 줄 코드를 사용할 수 있습니다. 백틱은 탭키 위에 있습니다.

👉 작성방법

Text inside `backticks` on a line will be formatted like code.

✅ 결과

Text inside backticks on a line will be formatted like code.

코드블럭(Code blocks)

코드 블록의 서식을 지정하려면 코드를 세 개의 백틱으로 둘러쌉니다.

👉 작성방법

```
cd ~/Desktop
```

✅ 결과

cd ~/Desktop

또는 4개의 공백을 사용하여 텍스트를 들여쓰기하여 코드 블록을 만들 수도 있습니다.

    cd ~/Desktop

첫 번째 백틱 세트 뒤에 언어 코드를 추가하여 코드 블록에 언어 문법을 추가할 수 있습니다.

👉 작성방법

```js
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```

✅ 결과

post content image