Are Obsidian Notes Just Markdown?
Yes, mostly, and the honest detail
You are wondering whether your Obsidian notes are just Markdown, or some locked-in proprietary format you can never get out of. The short answer: they are plain .md text files you can open anywhere. Nothing is locked away.
The honest detail is that Obsidian adds a few non-standard touches that live inside the .md as text. Here is exactly what is and is not standard, and what it means for taking your notes elsewhere.
Yes, your notes are plain .md files
Each note in your vault is a plain-text .md file on disk. Open one in any text editor and you can read it. There is no database, no proprietary container, no binary blob. That is the core reassurance: you are not locked in. If you stopped using Obsidian tomorrow, the files would still be right there, readable.
The honest detail: Obsidian’s non-standard extras
Obsidian adds a few conveniences that are not part of standard Markdown. The important thing: they are still written into the file as plain text, not hidden in a special format. They are [[wikilinks]], ![[embeds]], and callouts.
Open a note that uses them in a plain text editor and you will see those exactly as typed, as literal text, because a plain editor does not know how to render them. Open the same note in a tool that understands them, like Obsidian itself or NoteLoom, and they turn into links and inline content. So "just Markdown" earns a small asterisk: it is Markdown, plus a few Obsidian-flavored bits, all of it readable text.
| In your notes | Standard or Obsidian-flavored? |
|---|---|
| Headings, bold, lists, links, code | Standard Markdown, reads anywhere |
| Frontmatter (YAML properties) | Widely supported, plain text at the top of the file |
| [[wikilinks]] and ![[embeds]] | Obsidian-flavored, not standard, but still plain text in the file |
| Callouts ( > [!note] ) | Obsidian-flavored, built on a blockquote; renders where callouts are supported, shows as a quote in plain tools |
| The .obsidian folder | Not a note, it is Obsidian’s own config |
If you have opened your notes somewhere and the [[wikilinks]] are showing as raw text, that is not corruption, it is just a reader that does not render them. See why your Markdown is not rendering.
Proving it: open your notes anywhere
Because your notes are just .md files, you can open them in any Markdown tool, which is the real test of not being locked in. NoteLoom is one way to see it: it opens your vault folder in the browser, renders the Obsidian-flavored [[wikilinks]], ![[embeds]], and frontmatter, and edits and saves back to the same files, with no import and no export.
That last part is the point. A tool that quietly converts your notes into its own format would be a new kind of lock-in. Editing the plain .md in place, and leaving it as .md, keeps your notes as portable as they started.
FAQ
Are Obsidian notes just plain Markdown?
Am I locked into Obsidian?
Are wikilinks and embeds standard Markdown?
Is the .obsidian folder part of my notes?
Can I open my Obsidian notes without Obsidian?
Does moving to another tool convert or lock my files?
See for yourself that they are just .md
Open NoteLoom in Chrome / Edge / Arc, mount your Obsidian vault folder, and read or edit the notes with [[wikilinks]] and ![[embeds]] rendered, saved straight back as plain .md. No import, no export, no lock-in, and no account.