Obsidian basics
Obsidian Beginnerβs Guide (English) β Clean & Visual
Index
001. Install Obsidian in 1 Minute
002. Switch to Uzbek Language Fast
003. Create New Note in One Click
004. Headings with Hash Levels
005. How to Make Text Bold in Obsidian
006. How to Write Italic Text Fast
007. Strikethrough Text Tutorial
008. Highlight Important Text Easily
009. Toolbar Quick Formatting Tips
010. Horizontal Divider Line in Obsidian
011. Block Quotes for Better Notes
012. Bulleted Lists in Obsidian
013. Numbered Lists Step by Step
014. Indent and Outdent Lists
015. Task Checkboxes in Obsidian
016. Add External Links Correctly
017. Simple Internal Links Wiki Style
018. Aliased Internal Links
019. Link to Headings Inside Note
020. Embed Notes with Exclamation
021. Code Blocks and Syntax Highlight
022. Create Tables in Obsidian Fast
023. Assets Folder Setup
024. Embed Audio Files in Notes
025. Embed Local Video Files Easily
026. Embed PDF Documents in Obsidian
027. Add and Embed Images Properly
028. Embed Maps
029. Callouts for Beautiful Notes
030. Flowcharts and Diagrams (Mermaid)
031. Math in Obsidian (LaTeX)
Below syntax examples are given. Some of them should be wrapped with two ``` backticks when using. They are marked as #InsideTripleBacktics in examples.
001. Install Obsidian in 1 Minute
Jump to Index
- Go to obsidian.md
- Download the installer for your OS (Windows/Mac/Linux)
- Run the installer β Follow prompts
- Launch Obsidian β Done! It's free and open-source.
002. Switch to Uzbek Language Fast
Jump to Index
- Settings β Appearance β Language
- Select βUzbek (ΠΠ·Π±Π΅ΠΊ)β
- Restart the app β Everything switches to Uzbek.
003. Create New Note in One Click
Jump to Index
- Press Ctrl + N β New blank note
- Or click β+β in the left sidebar
- Name the file right away (supports Latin or Cyrillic).
004. Headings with Hash Levels
Jump to Index
# H1 Heading (Biggest)
## H2 Heading
### H3 Heading
#### H4 Heading
##### H5 Heading
###### H6 Heading (smallest)
H1 Heading (Biggest)
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading (smallest)
005. How to Make Text Bold in Obsidian
Jump to Index
**bold** or __bold__
006. How to Write Italic Text Fast
Jump to Index
*italic* or _italic_
007. Strikethrough Text Tutorial
Jump to Index
~~strikethrough~~
008. Highlight Important Text Easily
Jump to Index
==highlight==
009. Toolbar Quick Formatting Tips
Jump to Index
Select text β use:
Ctrl+Bβ boldCtrl+Iβ italicCtrl+DβstrikethroughAlt+Hβ highlight
010. Horizontal Divider Line in Obsidian
Jump to Index
---
***
___
011. Block Quotes for Better Notes
Jump to Index
> Single level quote
>> Nested quote
Single level quote
Nested quote
012. Bulleted Lists in Obsidian
Jump to Index
- Item 1
- Item 2
- Sub-item
- Item 1
- Item 2
- Sub-item
013. Numbered Lists Step by Step
Jump to Index
1. First
2. Second
3. Sub 1
4. Sub 2
- First
- Second 3. Sub 1 4. Sub 2
014. Indent and Outdent Lists
Jump to Index
Tab β indent
Shift+Tab β outdent
015. Task Checkboxes in Obsidian
Jump to Index
- [ ] Not done
- [x] Done
- [>] Deferred
- [?] Question
-
[>] Deferred
-
[?] Question
016. Add External Links Correctly
Jump to Index
[Obsidian](https://obsidian.md)
017. Simple Internal Links Wiki Style
Jump to Index
\[\[031. Math in Obsidian\]\]
018. Aliased Internal Links
Jump to Index
\[\[031. Math in Obsidian|LaTeX Guide\]\]
019. Link to Headings Inside Note
Jump to Index
\[\[Obsidian Guide#005. How to Make Text Bold in Obsidian|Bold Text\]\]
020. Embed Notes with Exclamation
Jump to Index
!\[\[001. Install Obsidian in 1 Minute\]\]
Resize example:
!\[\[photo.jpg|300\]\]
021. Code Blocks and Syntax Highlight
Jump to Index
python print("Hello Obsidian!")
print("Hello Obsidian!")
022. Create Tables in Obsidian Fast
Jump to Index
| Name | Age | City |
|:-------|:---:|-----------:|
| Ali | 25 | Tashkent |
| Vali | 30 | Samarkand |
| Name | Age | City |
|---|---|---|
| Ali | 25 | Tashkent |
| Vali | 30 | Samarkand |
023. Assets Folder Setup
Jump to Index
024. Embed Audio Files in Notes
Jump to Index
!\[\[song.mp3\]\]
Plays inline.
025. Embed Local Video Files Easily
Jump to Index
markdown
!\[\[video.mp4\]\]
html
<video src="local_path_or_external_url_link" width="300" autoplay muted></video>
026. Embed PDF Documents in Obsidian
Jump to Index
!\[\[paper.pdf\]\]
!\[\[paper.pdf|200\]\]
!\[\[paper.pdf#page=5\]\]
Shows page 5 directly.
027. Add and Embed Images Properly
Jump to Index
Aligns right with width 250px.

028. Embed Maps
Jump to Index
<iframe width=600 height=600 src="the_url_of_a_map" />
029. Callouts for Beautiful Notes
Jump to Index
> [!info] Title
> Useful information
-
Title
Useful information
> [!tip] Quick Tip
> Save time with this!
-
Quick Tip
Save time with this!
> [!warning] Careful
> This might break something
-
Careful
This might break something
Other types: note, abstract, success, error, example, quote
030. Flowcharts and Diagrams (Mermaid)
Jump to Index
mermaid
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Good]
B -->|No| D[Try Again]
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Good]
B -->|No| D[Try Again]031. Math in Obsidian (LaTeX)
Jump to Index
Inline:
Obsidian Beginnerβs Guide (English) β Clean & Visual
Index
001. Install Obsidian in 1 Minute
002. Switch to Uzbek Language Fast
003. Create New Note in One Click
004. Headings with Hash Levels
005. How to Make Text Bold in Obsidian
006. How to Write Italic Text Fast
007. Strikethrough Text Tutorial
008. Highlight Important Text Easily
009. Toolbar Quick Formatting Tips
010. Horizontal Divider Line in Obsidian
011. Block Quotes for Better Notes
012. Bulleted Lists in Obsidian
013. Numbered Lists Step by Step
014. Indent and Outdent Lists
015. Task Checkboxes in Obsidian
016. Add External Links Correctly
017. Simple Internal Links Wiki Style
018. Aliased Internal Links
019. Link to Headings Inside Note
020. Embed Notes with Exclamation
021. Code Blocks and Syntax Highlight
022. Create Tables in Obsidian Fast
023. Assets Folder Setup
024. Embed Audio Files in Notes
025. Embed Local Video Files Easily
026. Embed PDF Documents in Obsidian
027. Add and Embed Images Properly
028. Embed Maps
029. Callouts for Beautiful Notes
030. Flowcharts and Diagrams (Mermaid)
031. Math in Obsidian (LaTeX)
Below syntax examples are given. Some of them should be wrapped with two ``` backticks when using. They are marked as #InsideTripleBacktics in examples.
001. Install Obsidian in 1 Minute
Jump to Index
- Go to obsidian.md
- Download the installer for your OS (Windows/Mac/Linux)
- Run the installer β Follow prompts
- Launch Obsidian β Done! It's free and open-source.
002. Switch to Uzbek Language Fast
Jump to Index
- Settings β Appearance β Language
- Select βUzbek (ΠΠ·Π±Π΅ΠΊ)β
- Restart the app β Everything switches to Uzbek.
003. Create New Note in One Click
Jump to Index
- Press Ctrl + N β New blank note
- Or click β+β in the left sidebar
- Name the file right away (supports Latin or Cyrillic).
004. Headings with Hash Levels
Jump to Index
# H1 Heading (Biggest)
## H2 Heading
### H3 Heading
#### H4 Heading
##### H5 Heading
###### H6 Heading (smallest)
H1 Heading (Biggest)
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading (smallest)
005. How to Make Text Bold in Obsidian
Jump to Index
**bold** or __bold__
006. How to Write Italic Text Fast
Jump to Index
*italic* or _italic_
007. Strikethrough Text Tutorial
Jump to Index
~~strikethrough~~
008. Highlight Important Text Easily
Jump to Index
==highlight==
009. Toolbar Quick Formatting Tips
Jump to Index
Select text β use:
Ctrl+Bβ boldCtrl+Iβ italicCtrl+DβstrikethroughAlt+Hβ highlight
010. Horizontal Divider Line in Obsidian
Jump to Index
---
***
___
011. Block Quotes for Better Notes
Jump to Index
> Single level quote
>> Nested quote
Single level quote
Nested quote
012. Bulleted Lists in Obsidian
Jump to Index
- Item 1
- Item 2
- Sub-item
- Item 1
- Item 2
- Sub-item
013. Numbered Lists Step by Step
Jump to Index
1. First
2. Second
3. Sub 1
4. Sub 2
- First
- Second 3. Sub 1 4. Sub 2
014. Indent and Outdent Lists
Jump to Index
Tab β indent
Shift+Tab β outdent
015. Task Checkboxes in Obsidian
Jump to Index
- [ ] Not done
- [x] Done
- [>] Deferred
- [?] Question
-
[>] Deferred
-
[?] Question
016. Add External Links Correctly
Jump to Index
[Obsidian](https://obsidian.md)
017. Simple Internal Links Wiki Style
Jump to Index
\[\[031. Math in Obsidian\]\]
018. Aliased Internal Links
Jump to Index
\[\[031. Math in Obsidian|LaTeX Guide\]\]
019. Link to Headings Inside Note
Jump to Index
\[\[Obsidian Guide#005. How to Make Text Bold in Obsidian|Bold Text\]\]
020. Embed Notes with Exclamation
Jump to Index
!\[\[001. Install Obsidian in 1 Minute\]\]
Resize example:
!\[\[photo.jpg|300\]\]
021. Code Blocks and Syntax Highlight
Jump to Index
python print("Hello Obsidian!")
print("Hello Obsidian!")
022. Create Tables in Obsidian Fast
Jump to Index
| Name | Age | City |
|:-------|:---:|-----------:|
| Ali | 25 | Tashkent |
| Vali | 30 | Samarkand |
| Name | Age | City |
|---|---|---|
| Ali | 25 | Tashkent |
| Vali | 30 | Samarkand |
023. Assets Folder Setup
Jump to Index
024. Embed Audio Files in Notes
Jump to Index
!\[\[song.mp3\]\]
Plays inline.
025. Embed Local Video Files Easily
Jump to Index
markdown
!\[\[video.mp4\]\]
html
<video src="local_path_or_external_url_link" width="300" autoplay muted></video>
026. Embed PDF Documents in Obsidian
Jump to Index
!\[\[paper.pdf\]\]
!\[\[paper.pdf|200\]\]
!\[\[paper.pdf#page=5\]\]
Shows page 5 directly.
027. Add and Embed Images Properly
Jump to Index
Aligns right with width 250px.

028. Embed Maps
Jump to Index
<iframe width=600 height=600 src="the_url_of_a_map" />
029. Callouts for Beautiful Notes
Jump to Index
> [!info] Title
> Useful information
-
Title
Useful information
> [!tip] Quick Tip
> Save time with this!
-
Quick Tip
Save time with this!
> [!warning] Careful
> This might break something
-
Careful
This might break something
Other types: note, abstract, success, error, example, quote
030. Flowcharts and Diagrams (Mermaid)
Jump to Index
mermaid
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Good]
B -->|No| D[Try Again]
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Good]
B -->|No| D[Try Again]
- [x] _Result_:
$E = mc^2$
### Block:
- [ ] _Syntax_
```code
$$
\int_0^\infty e^{-x^2} \, dx = \frac{\sqrt{\pi}}{2}
$$Youβve mastered Obsidian basics!
Next step: enable Core Plugins β Graph View, Daily Notes, and explore Community Plugins. Happy note-taking! π