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.

Open EditorDownload PDF

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.

  1. Click New Note.
  2. Enter a descriptive title.
  3. Start writing using standard Markdown syntax.
  4. Save the note. Obsidian automatically stores it as a .md file 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.

Using Tags

Tags help organize notes by topic.

Simply add a hash symbol before the tag name.

Example:

#markdown

#documentation

#tutorial

#project

A single note can have multiple tags.

Example:

#markdown #github #documentation

Tags make it easier to group related notes without moving files into different folders.

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:

![Dashboard](images/dashboard.png)

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.

Practical Workflow in Obsidian

A simple workflow for managing notes in Obsidian might look like this:

  1. Create a new note.
  2. Write using Markdown.
  3. Add headings and lists.
  4. Link related notes with [[...]].
  5. Add tags for organization.
  6. Review backlinks.
  7. 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.

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.

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.

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.

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.

  1. Create or open a vault and add a new note called Learning Markdown.md.
  2. Write a short note with a heading, bullet list, internal link ([[Markdown Basics]]), tag, and fenced code block.
  3. Create a second note Daily Tasks.md with a task list and link it from your first note.
  4. Switch to Reading View and review how formatting, links, and tags render.
  5. Compare your syntax with the Markdown Editor to preview the same elements in the browser.

Review your work against this checklist:

  • Note saved with .md extension
  • 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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.