# 옵시디언 테마 설정을 위한 다양한 마크다운 문법

아래 내용을 노트로 만드시고 테마 설정하세요.

# Obsidian Markdown Syntax Examples

## Headings

# Heading 1

- 내용 1

- 내용 2

## ​Heading 2

- 내용 1

    - 내용 2 #tag #nested/tag

### Heading 3

- 내용 1

- 내용 2

### Heading 4

- 내용 1

- 내용 2

### Knowledge Management

- 지식관리

### Heading 5

### Heading 6

## Bold, Italic, and Strikethrough

### Internal

[[옵시디언 필수 플러그인(Plugin) 추천]]  #Internal
[[옵시디언 테마 설정을 위한 다양한 마크다운 문법]]
[[밥 한번 먹자]]  #Unresolved

### External

[커맨드스페이스](https://class.cmdspace.kr/channels/L2NoYW5uZWxzLzE3Njkx/pages/home) #External

- **Bold** → `**Bold**`

- _Italic_ → `*Italic*`

- ~Strikethrough~ → `~~Strikethrough~~`

- **_Bold and Italic_** → `***Bold and Italic***`

## Lists

### Unordered List

- Item 1

    - Sub-item 1

        - Sub-sub-item 1

- Item 2

### Ordered List

1. First item

2. Second item

    1. Sub-item 1

    2. Sub-item 2

## Links

- [Obsidian Official Site](https://obsidian.md) → `[Obsidian Official Site](``[https://obsidian.md](https://obsidian.md)``)`

[Obsidian - Sharpen your thinking](https://obsidian.md)

- Internal Link: [[Note Title]] → `[[Note Title]]`

- Alias Link: [[Note Title|Custom Text]] → `[[Note Title|Custom Text]]`

## Blockquotes

> This is a blockquote

> Nested blockquote

Syntax:

```javascript
> This is a blockquote
>> Nested blockquote
```

## Code Blocks

### Inline Code

Use `inline code` with backticks → inline code

### Code Block (Fenced)

```javascript
print("Hello, Obsidian!")
```

```javascript
# This is a Markdown example
```

## Tables

| Header 1 | Header 2 | Header 3 |
| --- | --- | --- |
| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
| Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 |
|  |  |  |

Syntax:

```javascript
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
| Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 |
```

## Callouts (Obsidian-specific)

> [!example] This is a note
> Notes help to emphasize information

> [!quote] Tip
> Use callouts for better readability!

> [!quote] 명언 모음집
> 옵시디언 노트에 취향과 관점을 담아 기록하면 이 노트들이 나에게 말을 걸어오기 시작한다.
> — 구요한

노트의 연결

Syntax:

```javascript
> [!note] This is a note
> Notes help to emphasize information

> [!tip] Tip
> Use callouts for better readability!
```

## Task Lists

- [ ] Task 1

- [x] Completed Task

- [ ] Task with **bold** text

Syntax:

```javascript
- [ ] Task 1
- [x] Completed Task
- [ ] Task with **bold** text
```

## Footnotes

This is an example of a footnote[^1].

[^1]: Here is the footnote content.

Syntax:

```javascript
This is an example of a footnote[^1].

[^1]: Here is the footnote content.
```

## Horizontal Line

---

## Syntax:
```

```javascript

```python
import pandas as pd

data = {'Name': ['Alice', 'Bob', 'Charlie'], 'Age': [25, 30, 35]}
df = pd.DataFrame(data)
print(df)

numbers = [x**2 for x in range(10)]
print(numbers)

print("Hello, World!")

```

## Embedding Notes

![[Note Title]] → `![[Note Title]]`

## Highlighting Text (Obsidian-specific)

==Highlighted Text== → `==Highlighted Text==`

## Tags

#tag1 #tag2/subtag → `#tag1 #tag2/subtag`

---

이 파일은 Obsidian 테마 설정 시 마크다운 문법을 확인하고 적용할 때 사용할 수 있도록 구성되었습니다.

For the site tree, see the [root Markdown](https://slashpage.com/cmds-class.md).
