Obsidian Markdown
Obsidian is a Markdown-based note-taking application that stores every note as a plain Markdown file. Because it uses standard Markdown instead of a proprietary format, your notes remain portable and can be edited with many other Markdown editors whenever needed.
Beyond standard Markdown, Obsidian adds features designed for knowledge management, including internal links, backlinks, graph view, note embeds, block references, and an extensive plugin ecosystem. These features help connect related notes while keeping your content in simple, readable text files.
Whether you're building a personal knowledge base, managing research, writing technical documentation, or organizing project notes, Obsidian combines familiar Markdown syntax with powerful organization tools that scale from a few notes to large knowledge vaults.
In this guide, you'll learn how to write Markdown in Obsidian, use both standard and Obsidian-specific syntax, organize notes efficiently, and follow practical workflows for creating a well-structured knowledge base.
π‘ Note: Obsidian fully supports standard Markdown syntax, so headings, lists, links, tables, images, and code blocks work just like they do in other Markdown editors. Obsidian simply extends Markdown with additional features for connecting and organizing notes.
What Is Obsidian Markdown?
Obsidian Markdown refers to writing and organizing notes using Markdown inside the Obsidian application.
Every note is saved as a Markdown file with the .md extension.
For example:
Daily Notes.md
Project Ideas.md
Meeting Notes.md
JavaScript Guide.md
Travel Plans.md
Because Obsidian stores notes as plain text, you always own your files.
You can edit them in other Markdown editors if needed, making your knowledge base future-proof.
Why Use Obsidian for Markdown?
Obsidian combines the simplicity of Markdown with powerful knowledge management features. Instead of storing notes in a proprietary database, every note is saved as a plain Markdown file that you fully own and can access outside the application.
This approach makes your notes portable, easy to back up, and compatible with other Markdown editors. Even if you stop using Obsidian, your notes remain standard Markdown documents that continue to work anywhere.
Many users choose Obsidian because it goes beyond basic note-taking. Features like internal links, backlinks, graph view, note embeds, and plugins help organize information into a connected knowledge base instead of a collection of isolated documents.
Common uses for Obsidian include:
- Personal knowledge management (PKM)
- Research notes and literature reviews
- Technical documentation
- Software development notes
- Meeting notes and project planning
- Study materials and class notes
- Daily journals and personal wikis
Whether you're managing a small notebook or thousands of connected notes, Obsidian scales well while keeping everything in simple Markdown files.
Creating Your First Markdown Note
After creating or opening a vault, creating a note is straightforward.
- Click New Note.
- Enter a descriptive title.
- Start writing using standard Markdown syntax.
- Save the note. Obsidian automatically stores it as a
.mdfile inside your vault.
For example:
Project Ideas.md
Daily Notes.md
Meeting Notes.md
Research Summary.md
Using clear and descriptive file names makes notes easier to find later and improves the effectiveness of internal links and search.
As your vault grows, meaningful note titles become just as important as the content inside each note.
Writing Your First Note
Let's create a simple note.
# Learning Markdown
Markdown is a lightweight markup language.
## Topics
- Headings
- Lists
- Links
- Images
- Code Blocks
Visit the documentation for more examples.
As you type, Obsidian highlights Markdown syntax and provides a clean editing experience.
Markdown Syntax in Obsidian
Obsidian supports standard Markdown syntax used across most Markdown editors.
For example, headings:
# Main Heading
## Section
### Subsection
See Markdown Headings for hierarchy rules and document structure.
Bullet lists:
- First item
- Second item
- Third item
Numbered lists:
1. Introduction
2. Installation
3. Examples
See Markdown Lists for ordered, unordered, and nested list syntax.
Code blocks:
```javascript
console.log("Hello, Obsidian!");
```
See Markdown Code Blocks for fenced blocks and syntax highlighting.
Since Obsidian follows standard Markdown, the skills you learn can also be used in GitHub, documentation websites, and many other editors.
Live Preview
One of Obsidian's most useful features is Live Preview.
Instead of switching between editing and preview modes, you can write Markdown while seeing a formatted version of your content.
For example, typing:
## Daily Notes
immediately displays it as a heading while keeping the editing experience smooth.
This makes writing faster and helps you spot formatting issues as you work.
Reading View and Editing View
Obsidian offers two ways to work with your notes.
Editing View lets you write and modify Markdown.
Reading View displays your note as fully formatted content, making it easier to review long documents.
You can switch between these views whenever needed, depending on whether you're writing or reading.
Why People Choose Obsidian
Obsidian is used by a wide range of people, including:
- Developers
- Technical writers
- Students
- Researchers
- Authors
- Project managers
- Content creators
- Knowledge workers
Its flexibility makes it suitable for everything from simple daily notes to large, interconnected knowledge bases.
Internal Links in Obsidian
One of Obsidian's biggest advantages is its ability to connect related notes using internal links. Instead of navigating through folders every time you need information, you can create links between notes and move through your knowledge base naturally.
Obsidian uses double square brackets to create wiki-style links.
[[Project Ideas]]
[[Meeting Notes]]
[[Daily Journal]]
As you type inside the brackets, Obsidian suggests matching notes from your vault. If a note doesn't already exist, selecting the suggested name creates a new note automatically, making it easy to build your knowledge base over time.
Unlike standard Markdown links that point to files or URLs, Obsidian's internal links are designed specifically for connecting notes within the same vault.
Linking to Multiple Notes#
A single note can reference as many other notes as needed.
For example, a project planning note might link to meeting notes, research documents, technical specifications, and daily progress logs.
[[Project Roadmap]]
[[API Documentation]]
[[Sprint Planning]]
[[Meeting Notes]]
Creating meaningful connections between related notes makes navigation faster and reduces the need to duplicate information across your vault.
Linking to Headings#
You can link directly to a heading inside another note instead of opening the entire document.
[[Markdown Guide#Tables]]
[[Project Plan#Timeline]]
Heading links are useful for long documents because they take you straight to the section you need. They're commonly used in documentation, research notes, and large project plans.
Linking to Blocks#
For even more precise navigation, Obsidian supports block references.
Instead of linking to an entire note or heading, you can reference a specific paragraph or list item.
[[Meeting Notes#^action-items]]
Block references are especially useful when the same information needs to appear in multiple notes. Rather than copying content, you can reference the original block and keep everything synchronized.
Backlinks
Every time one note links to another, Obsidian automatically creates a backlink.
For example:
Project Planning
β
βΌ
Meeting Notes
If Project Planning links to Meeting Notes, then Meeting Notes will automatically show that it is referenced by Project Planning.
This makes it much easier to understand how your notes relate to one another.
Backlinks are one of the features that makes Obsidian different from many traditional note-taking applications.
Organizing Notes with Folders
Although Obsidian works well without folders, many users prefer organizing notes into a clear directory structure.
Example:
Vault/
βββ Daily Notes/
βββ Projects/
βββ Documentation/
βββ Tutorials/
βββ Research/
βββ Images/
Using folders keeps large vaults organized and easier to navigate.
Graph View
One of Obsidian's unique features is the Graph View.
It displays your notes as a visual network.
Each note appears as a node, and every internal link creates a connection between notes.
As your vault grows, the graph helps you discover relationships that might otherwise be difficult to notice.
Many users rely on Graph View when building personal knowledge bases or research projects.
Embedding Notes and Images
Embedding Notes#
Besides linking to another note, Obsidian also lets you embed its contents directly inside the current note. Embedded notes automatically stay in sync with the original, so updates only need to be made once.
Use an exclamation mark before the wiki link:
![[Project Overview]]
This is useful for reusing meeting summaries, project documentation, templates, or reference material across multiple notes without duplicating content.
Embedding Images#
Images can also be embedded using Obsidian's wiki link syntax.
![[dashboard.png]]
You can resize an embedded image by specifying its width.
![[dashboard.png|400]]
Standard Markdown image syntax is supported as well:

Wiki-style image embeds are convenient for files stored inside your vault, while standard Markdown images provide better compatibility with GitHub and other Markdown editors. See Markdown Images for syntax, paths, and alt text best practices.
Checklists, Tables, and Code in Obsidian
Obsidian fully supports standard Markdown elements, making it suitable for technical documentation, project planning, and software development notes.
Checklists#
Track tasks using Markdown checkboxes.
- [ ] Write documentation
- [x] Publish guide
- [ ] Review content
See Markdown Task Lists for checkbox syntax and nested checklists.
Tables#
Organize structured information using standard Markdown tables.
| Feature | Supported |
| ------- | --------- |
| Tables | Yes |
| Task Lists | Yes |
| Code Blocks | Yes |
See Markdown Tables for alignment and GFM table syntax.
Code Blocks#
Use fenced code blocks with language identifiers for syntax highlighting.
def greet(name):
return f"Hello {name}"
Obsidian automatically highlights many popular programming languages, making it useful for storing snippets, commands, and technical documentation. See Markdown Code Blocks for fenced blocks and language identifiers.
Popular Obsidian Plugins
The default installation is powerful, but plugins can extend Obsidian even further.
Some popular community plugins include:
- Calendar
- Kanban
- Dataview
- Excalidraw
- Advanced Tables
- Templater
Install plugins only when you need additional functionality. A lightweight setup is often easier to maintain.
Practical Workflow in Obsidian
A simple workflow for managing notes in Obsidian might look like this:
- Create a new note.
- Write using Markdown.
- Add headings and lists.
- Link related notes with
[[...]]. - Add tags for organization.
- Review backlinks.
- Continue expanding your knowledge base over time.
Following a consistent workflow makes your notes easier to maintain as your collection grows.
Best Practices for Obsidian Markdown
A well-organized vault is easier to maintain than one that grows without structure. These practices can help keep your notes searchable, connected, and useful over time.
Use Descriptive Note Titles#
Choose note names that clearly describe their contents.
Project Roadmap
API Authentication
Meeting Notes - July 2026
Clear titles make search, internal linking, and backlinks much more effective.
Prefer Links Over Duplicate Content#
Instead of copying the same information into multiple notes, create internal links or embed the original note. This keeps information consistent and reduces maintenance as your vault grows.
Keep Folders Simple#
Folders are useful for broad organization, but avoid creating deeply nested structures. Many Obsidian users rely primarily on internal links, backlinks, and tags to navigate large knowledge bases.
Use Consistent Headings#
A consistent heading structure improves readability and makes it easier to link directly to sections within long notes.
Review and Connect Related Notes#
As your vault grows, revisit older notes and add links where ideas naturally connect. A well-linked vault becomes easier to explore and often reveals relationships that are difficult to spot in isolated documents.
Organizing Large Vaults and Templates
Organizing Large Vaults#
As your collection grows, good organization becomes more important.
A simple folder structure might look like this:
Vault/
βββ Daily Notes/
βββ Projects/
βββ Programming/
βββ Documentation/
βββ Research/
βββ Books/
βββ Templates/
βββ Attachments/
You don't have to create many folders at the beginning. Start simple and expand only when needed.
Templates#
If you create similar notes often, templates can save time.
Example meeting note template:
# Meeting Notes
## Date
## Attendees
## Discussion
## Decisions
## Action Items
Example project template:
# Project
## Goal
## Progress
## Resources
## Tasks
- [ ] Task 1
- [ ] Task 2
## Notes
Templates help maintain consistency across your vault.
Searching Your Notes#
Obsidian includes a powerful search feature.
You can search by:
- Keywords
- Tags
- File names
- Headings
- Content inside notes
As your vault grows, search becomes one of the fastest ways to find information.
Common Mistakes
New Obsidian users often make the vault more complicated than it needs to be. Avoid these common mistakes.
Creating Too Many Folders#
Complex folder hierarchies make navigation harder. Start with a simple structure and let internal links organize related information naturally.
Using Inconsistent Note Names#
Frequent renaming or unclear titles makes notes difficult to find and link. Use descriptive, consistent naming from the beginning.
Forgetting to Link Related Notes#
A collection of isolated notes quickly becomes difficult to navigate. Add internal links whenever notes reference the same topic, project, or idea.
Duplicating Information#
Copying the same content into multiple notes increases maintenance. Use note embeds or links instead whenever possible.
Ignoring Backlinks#
Backlinks help reveal relationships across your vault. Checking them regularly can uncover useful connections and improve how your knowledge base is organized.
Real-World Examples
Learning Programming#
A student learning web development might organize notes like this:
Programming/
βββ HTML Basics.md
βββ CSS Basics.md
βββ JavaScript Basics.md
βββ React Notes.md
βββ Git Commands.md
Each note can link to related concepts, making it easier to study and review.
Personal Knowledge Base#
Many people use Obsidian as a personal knowledge management (PKM) system.
Example:
Knowledge/
βββ Books.md
βββ Productivity.md
βββ Business Ideas.md
βββ Health Notes.md
βββ Research.md
Over time, these notes become a searchable collection of ideas and information.
Project Documentation#
Teams and individual developers often use Obsidian to organize project documentation.
Example:
Project/
βββ Requirements.md
βββ API Documentation.md
βββ Database Design.md
βββ Meeting Notes.md
βββ Release Plan.md
This keeps project information organized while making it easy to connect related documents.
Productivity Tips
These simple habits can improve your Obsidian workflow:
- Create links whenever notes are related.
- Use descriptive file names.
- Review backlinks regularly.
- Keep your folder structure simple.
- Use templates for recurring note types.
- Archive outdated notes instead of deleting them immediately.
- Search before creating a new note to avoid duplicates.
- Focus on writing first and organizing later.
Small improvements in your workflow can make a big difference as your vault continues to grow.
Practice Obsidian Markdown
The best way to learn is by writing notes in Obsidian yourself.
- Create or open a vault and add a new note called
Learning Markdown.md. - Write a short note with a heading, bullet list, internal link (
[[Markdown Basics]]), tag, and fenced code block. - Create a second note
Daily Tasks.mdwith a task list and link it from your first note. - Switch to Reading View and review how formatting, links, and tags render.
- Compare your syntax with the Markdown Editor to preview the same elements in the browser.
Review your work against this checklist:
- Note saved with
.mdextension - At least one internal link with
[[...]] - Task list with checked and unchecked items
- Logical heading hierarchy
- Tag added for organization
Keep the Markdown Cheat Sheet open for quick syntax lookup.
Summary
Obsidian combines the simplicity of Markdown with powerful note-taking and knowledge management features. Because every note is stored as a standard Markdown file, your content remains portable, future-proof, and compatible with other editors and platforms.
Learning a few core featuresβsuch as internal links, backlinks, embeds, tags, and Graph Viewβcan dramatically improve how you organize documentation, research, project notes, and personal knowledge. As your vault grows, these connections become more valuable than relying on folders alone.
If you're new to Markdown, start by learning the basic syntax before exploring Obsidian-specific features. Once you're comfortable with headings, lists, links, images, tables, and code blocks, you'll be able to build well-structured notes that are easy to maintain and navigate.
Frequently Asked Questions
- 1
What is Obsidian Markdown?
Obsidian Markdown refers to writing and organizing notes using Markdown inside Obsidian. Every note is stored as a plain text .md file, making your notes portable, easy to edit, and compatible with many other Markdown editors.
- 2
Does Obsidian use standard Markdown?
Yes. Obsidian is built around standard Markdown syntax. You can use headings, lists, links, images, tables, code blocks, blockquotes, and other common Markdown elements. In addition, Obsidian includes its own features such as internal links, backlinks, embeds, and tags to make note-taking more powerful.
- 3
What is an Obsidian Vault?
A vault is simply a folder that contains all of your Markdown notes and attachments. For example, a vault might include Daily Notes, Projects, Research, Templates, and Images folders. Because a vault is just a normal folder, you always have full access to your files.
- 4
Can I open Obsidian notes in another Markdown editor?
Yes. Since every note is saved as a standard .md file, you can open it in editors such as Visual Studio Code, Typora, Zettlr, Mark Text, or any plain text editor. This portability is one of Obsidian's biggest advantages.
- 5
What are backlinks in Obsidian?
Backlinks automatically show which notes link to the current note. For example, if Project Ideas links to Marketing Plan, the Marketing Plan note will display a backlink to Project Ideas. Backlinks help you discover relationships between notes without manually tracking them.
- 6
How do I create internal links?
Use double square brackets around the note title. For example: [[Markdown Basics]], [[Project Roadmap]], or [[Meeting Notes]]. If the note doesn't exist yet, Obsidian lets you create it later.
- 7
Can I use images in Obsidian?
Yes. You can use standard Markdown image syntax like !Dashboard, or use Obsidian's internal embed syntax like ![[dashboard.png]]. Both methods work well depending on how your vault is organized.
- 8
Does Obsidian support Markdown tables and checklists?
Yes. You can create tables with standard Markdown pipe syntax and task lists with - [x] and - [ ] checkboxes. These features are useful for project planning and documentation.
- 9
Is Obsidian good for technical documentation?
Yes. Many developers and technical writers use Obsidian to draft documentation before publishing it. Its Markdown support, internal linking, search, templates, and plugin ecosystem make it an excellent tool for organizing technical content.
- 10
Who should use Obsidian?
Obsidian is suitable for students, developers, technical writers, researchers, authors, project managers, content creators, and anyone who wants to build a personal knowledge base. Whether you're managing a few notes or thousands of documents, Obsidian provides a flexible and organized writing experience.
