회의록 노트 템플릿 
Show more
Sign In
Subscribe

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

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

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

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
a.
Sub-item 1
b.
Sub-item 2

Links

Obsidian Official Site[Obsidian Official Site](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:
> This is a blockquote >> Nested blockquote

Code Blocks

Inline Code

Use inline code with backticks → inline code

Code Block (Fenced)

print("Hello, Obsidian!")
# 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:
| 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:
> [!note] This is a note > Notes help to emphasize information > [!tip] Tip > Use callouts for better readability!

Task Lists

Task 1
Completed Task
Task with bold text
Syntax:
- [ ] 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:
This is an example of a footnote[^1]. [^1]: Here is the footnote content.

Horizontal Line

Syntax:
```

```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 테마 설정 시 마크다운 문법을 확인하고 적용할 때 사용할 수 있도록 구성되었습니다.
👍
2