Markdown Basics
Master the simple syntax for formatting text in your notes.
What is Markdown?
Markdown is a simple language for writing formatted documents. Instead of clicking buttons like in Microsoft Word, you use simple symbols and syntax to indicate formatting. The beauty of Markdown is that:
- It's easy to learn and remember
- Plain text is readable even without formatting
- It works on any device and any text editor
- It's perfect for note-taking and documentation
Key concept: Markdown lets you write formatted text using plain text syntax. When you view your note in "Reading View," all the formatting becomes visible.
Headings
Create headings by starting a line with one or more # symbols:
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6 Result:
Heading 1
Heading 2
Heading 3
Tip: Use Heading 1 for the main title, Heading 2 for sections, and Heading 3+ for subsections. This helps organize your notes!
Text Formatting
Bold
bold text
Italic
italic text
Bold and Italic
bold and italic
Strikethrough
strikethrough text
Code (Inline)
Use code for technical terms.
Lists
Unordered Lists
- Item 2
- Nested item
- Item 3 Result:
- Item 1
- Item 2
- Nested item
- Item 3
Ordered Lists
2. Second item
3. Third item Result:
- First item
- Second item
- Third item
Task Lists
- [ ] Incomplete task
- [ ] Another task Result:
Incomplete task
Another task
Tip: Click checkboxes in Reading View to mark tasks complete!
Links
Regular Links
Internal Links (Most Important!)
This is unique to Obsidian and incredibly powerful. We'll dive deep into this in Module 6, but here's a quick preview:
[[Note Name|Custom Display Text]] Result:
Clicking the link takes you to "Note Name" in your vault.
Code Blocks
For longer code snippets, use triple backticks with an optional language:
def hello():
print("Hello, world!")
``` Result:
def hello():
print("Hello, world!")
Common languages: python, javascript, java, html, css, sql, bash
Blockquotes
> It can span multiple lines
>
> > And you can nest quotes too Result:
This is a quote
It can span multiple linesAnd you can nest quotes too
Use case: Great for quotes from research papers or important excerpts!
Horizontal Rules
Use this to visually separate sections of your note.
Images
Embed images from your vault or the web:

Tip: Store images in a folder like "attachments" or "images" inside your vault to keep organized.
Tables
Create simple data tables:
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 | Result:
| Header 1 | Header 2 |
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Tip: Use tables to organize data, comparisons, or structured information.
Quick Reference Cheat Sheet
## Heading 2
**Bold**
*Italic*
***Bold and Italic***
~~Strikethrough~~
`Code`
- List item
- [ ] Task
[[Internal link]]
[Text](url)

> Blockquote
--- Horizontal rule
| Table |
Practice Time!
Now that you've learned Markdown syntax, try these exercises in your Obsidian vault:
- Create a note with a main heading and at least 3 subheadings
- Use bold and italic formatting in a sentence
- Create both an ordered and unordered list
- Add a blockquote of something meaningful to you
- Create a simple task list and check off some items
- Try toggling between Edit and Reading views to see how it looks
Next: In Module 6, we'll explore the most powerful Obsidian feature: internal linking!