Obsidian + Docusaurus = Where your Obsidian notes meet the web
Community continuation — the original author Mat4m0 is no longer maintaining this project and has handed it over to KenBlasse. This is now the official repository.
Obsidiosaurus is a converter for Obsidian markdown notes to the static site builder Docusaurus.
It allows for a better experience writing and maintaining markdown files, since both share a lot of common features.
Only folders named docs, blog, or assets (or containing those words) in your vault root are processed — everything else is ignored. This lets you keep personal notes alongside your public documentation.
Required directory layout:
parent/
YourVault/ ← Obsidian Vault (any name)
docs/ ← converted to Docusaurus docs
assets/ ← images and files
website/ ← Docusaurus instance (configurable in plugin settings)
The docs/ folder supports subfolders, which become sidebar categories.
Modernized codebase with Docusaurus v3 compatibility:
- Docusaurus v3 support — outputs
.mdxfiles (required for admonitions withfuture.v4flag) - Admonition syntax updated —
:::note[Title]format, lowercase types - No system dependencies — replaced GraphicsMagick (
gm) with browser-native Canvas API; works in Electron without native addons - TypeScript 5.4 — upgraded from 4.7
- Unit tests — 33 tests across markdownProcessor, fileInfoBuilder, changeTracker, assetProcessor
- Refactored architecture — mainProcessor split into focused modules:
fileScanner,fileInfoBuilder,changeTracker,assetProcessor - Bug fixes — asset double-slash (#13/#18), ENOENT on stale assets (#14), orphaned files on rename (#16)
Via BRAT (recommended for non-store plugins):
- Install BRAT from the Obsidian Community Plugins
- Open BRAT settings → "Add Beta plugin"
- Enter:
KenBlasse/obsidiosaurus - Enable the plugin in Obsidian settings
Manual install:
Download main.js, manifest.json, styles.css from the latest release and place them in .obsidian/plugins/obsidiosaurus/.
Original documentation: cimsta.github.io/obsidiosaurus-docs
New documentation: https://kenblasse.github.io/obsidiosaurus-docs/
- Documentation: ✅
- Blog: ✅
- Multiple Blogs: ✅
- Localisation i18n: ✅
- Multiple Sidebars: ✅
- Versioning: ⛔ (complex)
- Links: ✅
- Tables: ✅
- Admonitions: ✅ (Docusaurus v3 syntax)
- Quotes: ✅
- iFrames: ✅
- Codeblocks: ✅
- Head Metadata: ✅
- Checklists: ✅
- Images: ✅ (.png & .svg)
- Image resize: ✅ (Canvas API, no system dependency)
- Image converter: ✅ (.jpg, .png, .webp)
- Themed Images: ✅ (light & dark mode)
- Files: ✅ (.pdf, .docx, ..)
- Excalidraw: ✅ (light & dark mode)
- diagrams.net: ✅ (light only)
- Math Equations: ✅
- Mermaid: ✅
- UML Diagrams: ❌ (not supported in Docusaurus)
- D2 Diagrams: ❌ (not supported in Docusaurus)
- Docusaurus Tabs: ❌ (not supported in Obsidian)
- MDX Support: ❌ (not supported in Obsidian)
Open an issue on GitHub.
Original author: Mat4m0 — Matthias Current maintainer: KenBlasse