qmd as md

by Daniel Borek
5
4
3
2
1
Score: 60/100

Description

Category: Coding & Technical Tools

The qmd as md plugin enables seamless editing of Quarto Markdown (QMD) files in Obsidian. Quarto files combine Markdown with executable code cells, making them compatible with tools like RStudio and VSCode. This plugin allows users to work directly with QMD files in Obsidian without needing to export them, making it a useful tool for those who want to integrate Quarto's features into their Obsidian workflow. Additionally, it includes options for running Quarto previews, recognizing code block syntax for highlighting, and enhancing file integration.

Reviews

No reviews yet.

Stats

118
stars
10,127
downloads
10
forks
1,322
days
34
days
34
days
19
total PRs
0
open PRs
1
closed PRs
18
merged PRs
3
total issues
1
open issues
2
closed issues
0
commits

Latest Version

a month ago

Changelog

Extend quarto outline to preview markdown files as well

README file from

Github

qmd as md

A plugin for Obsidian that allows seamless editing of QMD files as if they were Markdown, plus rendering and live preview of .qmd files directly inside Obsidian via Quarto. .md files inside a Quarto project (folder with _quarto.yml) can also be rendered and previewed — opt-in via settings.

QMD files combine Markdown with executable code cells and are supported by Quarto, an open-source publishing system. They work in editors like RStudio and VSCode and might be compiled to target format files via pandoc. For format-specific options (PDF, HTML, DOCX, reveal.js, etc.), see the Quarto format reference.

This plugin shells out to the quarto CLI for all preview and render operations, so Quarto must be installed locally and reachable on your shell PATH; if it is not auto-discovered, set its full path in Settings → qmd as md → Quarto path (e.g. /usr/local/bin/quarto).

Features

  • View and edit .qmd files using Obsidian's standard Markdown editor.
  • Create a new .qmd from a built-in preset (empty, Word .docx, or modern Typst PDF) via the command palette. (Since 0.4.)
  • Run Quarto preview on the current file, shown inside Obsidian or in your browser.
  • Render to PDF and (optionally) open the result inside Obsidian.
  • A sidebar outline of the active .qmd file's headings — Obsidian's core Outline panel cannot read .qmd files.
  • Optionally run the preview and render commands on .md files too, when they live inside a Quarto project (a folder with _quarto.yml).
  • Optional dedicated editor for .yml / .yaml files, with Quarto-oriented YAML syntax highlighting.
  • Optional dedicated editor for .lua files with minimal syntax highlighting — handy for Quarto/pandoc filter scripts.
  • Quarto errors surface as Obsidian notices, not just in the developer console.
  • Obsidian callouts rendered as native Quarto callouts via a small pandoc Lua filter.

Usage

In short: The diagram below sketches the three things you do with a .qmd file in the vault — edit, preview, render. Editing happens in Obsidian's standard Markdown editor. Toggle Quarto preview spawns a live quarto preview server that re-renders on save; depending on the output format and the Open Quarto preview in Obsidian setting, it lands in the native PDF viewer, the Web viewer split, or your external browser. Render runs a one-shot quarto render, drops the PDF next to the source, and (with the Open Compiled PDF in Obsidian setting on) opens it in a right split. The sections below cover each path in detail.

Plugin workflow: edit, preview, and render paths from a .qmd file in the vault to output targets inside Obsidian or the external browser

Quarto for academics

Quarto suits academic work especially well because one .qmd can render a journal-ready PDF, a .docx, or an HTML version of the same manuscript. A separate .qmd (typically reusing the same bibliography and figures) drives the talk as PDF or reveal.js slides — manuscript and presentation stay in their own files, not one document juggling both formats. Citations use pandoc's citeproc against a .bib file — Zotero (with Better BibTeX for auto-export) plus Obsidian plugins like Citations or Pandoc Reference List let you insert @key references while drafting in the vault. On top of that Quarto gives cross-references, equations, and reproducible Python/R analyses in the same document. See Quarto in academia below for a workflow sketch and pointers to the official docs.

Editing QMD files

Once installed, .qmd files open in Obsidian's Markdown editor automatically.

To enable linking with Quarto files, ensure the "Detect all file extensions" toggle is activated in the Files & Links section of Obsidian settings.

Quarto preview

Available from the command palette: run Toggle Quarto preview on the active .qmd file. (Since 0.0.3.)

Rendering to PDF

(Since 0.1)

Three command-palette entries (all share the ribbon icon file-output, which is bound to the YAML-driven variant):

Command What it runs When to use
Render Quarto (use format defined in YAML) quarto render <file> Document's YAML format: block decides the output. If YAML targets a non-PDF format (e.g. html, docx), the file still renders but Obsidian's built-in viewer will not open it — the plugin shows a path notice.
Render Quarto to PDF (Typst engine) quarto render <file> --to typst Force the Typst engine regardless of YAML. Use QUARTO_TYPST setting to pin a Typst binary.
Render Quarto to PDF (LaTeX engine) quarto render <file> --to pdf Force the LaTeX engine (lualatex/xelatex/pdflatex).

The CLI flag --to pdf is Quarto's LaTeX path, not a generic "any PDF" — that's why the engine-specific commands are split out. Pick the YAML-driven one if your .qmd already declares the format you want; pick an explicit engine to override per-render without touching the file.

If a live preview is running for the file, triggering any render stops that preview first — a one-shot quarto render and a running quarto preview would otherwise fight over the same output paths.

When a render fails, the notice shows Quarto's actual ERROR: line (bad YAML, missing engine, etc.), so you usually don't need to open the developer console.

Setting: Open Compiled PDF in Obsidian

Off by default.

  • Off — render finishes, notice shows the PDF path. Open it however you want.
  • On — rendered PDF opens in a vertical split on the right via Obsidian's built-in PDF viewer. Source tab keeps focus.

Re-running the render reuses the existing PDF tab — no tab stacking.

Caveats
  • The .qmd source must live inside the vault (the rendered .pdf lands next to it; Obsidian only opens vault files).
  • Custom output-dir in _quarto.yml is not yet handled — the plugin looks for <basename>.pdf next to the source.

Live preview

(Since 0.2.)

The Toggle Quarto preview command (palette + ribbon icon eye) spawns quarto preview on the active .qmd, which runs a live HTTP server that re-renders on every save.

Setting Open Quarto preview in Obsidian decides where the generic command and ribbon preview land:

  • On (default):
    • PDF outputs (e.g. format: typst, format: pdf) open in Obsidian's native PDF viewer in a right split. Each compile from the running preview refreshes the same tab — no Quarto-served PDF.js wrapper page. The HTTP server keeps running in the background, but the URL is not opened; instead, a notice reports the server URL for reference.
    • Non-PDF outputs (HTML, etc.) open in Obsidian 1.8's built-in webviewer view. Requires the Web viewer core plugin to be enabled (Settings → Core plugins). The preview re-renders in place as you save the source.
  • Off: the plugin opens Quarto's preview URL in your default external browser.

Two explicit command-palette entries bypass the setting:

  • Toggle Quarto preview in Obsidian always uses the in-app target.
  • Toggle Quarto preview in external browser always opens your default browser.

If the Web viewer core plugin is disabled while the Obsidian target is used for a non-PDF preview, the plugin shows a notice and falls back to your external browser instead of silently failing.

Either way, the underlying quarto preview process keeps running until you toggle the command again (or trigger a render) — the toggle controls where the output is shown, not the server's behaviour. Stopping the preview kills the whole Quarto process tree, including the background HTTP server, so it does not keep serving after you stop it.

Preview errors — including errors from a recompile while the preview is running — are reported as notices showing Quarto's ERROR: line.

Quarto outline

(Since 0.2.)

Obsidian's core Outline panel only reads .md files, so it stays blank for .qmd. This plugin adds its own outline instead.

Turn on Show Quarto outline in settings, or run the Open Quarto outline command, to open a sidebar listing the headings of the active .qmd file. Click a heading to jump to it in the editor.

  • Active file only — headings from files pulled in with {{< include >}} are not listed.
  • ATX headings (#, ##, …) only; setext (underlined) headings are not shown.
  • Headings inside YAML frontmatter and fenced code cells are ignored.

Markdown files in Quarto projects

(Since 0.3.)

Setting Preview and render Markdown files with Quarto is off by default. Turn it on to let the preview and render commands also accept .md files — but only when those files live inside a Quarto project, i.e. a _quarto.yml exists in the file's folder or any ancestor folder up to the vault root. Plain .md notes outside a Quarto project are left untouched.

YAML file editor

(Since 0.3.)

Setting Show YAML files is off by default. Turn it on to make .yml and .yaml files — including _quarto.yml — visible and editable inside Obsidian, in a dedicated CodeMirror editor with Quarto-oriented YAML syntax highlighting.

Lua file editor

(Since 0.3.2.)

Setting Show Lua files is off by default. Turn it on to make .lua files visible and editable inside Obsidian, in a dedicated CodeMirror editor with minimal Lua syntax highlighting (comments, strings, numbers, keywords) — handy for editing Quarto/pandoc filter scripts without leaving Obsidian.

Creating a new QMD file

(Since 0.4.)

Run New Quarto file from preset in the command palette. Pick a preset, enter a filename, and the new .qmd is created in the active folder (or vault root if none is active) and opened immediately. Existing files are never overwritten — name collisions get a -1, -2, … suffix.

Built-in presets (always available):

  • Empty — minimal front-matter, no format specified.
  • Word (.docx)format: docx with TOC and numbered sections.
  • Typst PDF — Notes (Eisvogel-style) — A4, numbered sections, page header, boxed code, accent rule under H1s.
  • Typst PDF — Report (Eisvogel-style) — adds cover metadata, TOC, bibliography/CSL hints; same Typst styling block.

Your own templates (optional). Set Settings → qmd as md → Templates folder to any folder in your vault (e.g. _quarto-templates). Every top-level .qmd file inside that folder is offered as a preset alongside the built-ins; the file name becomes the preset name, the file contents are inserted into the new file verbatim. Subfolders are ignored. Leave the setting empty (the default) to show only the built-ins.

Because templates are real .qmd files in your vault, you edit them with Obsidian's normal editor, version-control them with the rest of your vault, and copy them between vaults like any other note. The built-ins are starting points: copy any built-in into your templates folder, tweak it, and your version takes priority in the picker.

Obsidian callouts in Quarto output

Quarto does not understand Obsidian's callout syntax (> [!note]) out of the box — it renders them as plain blockquotes. A small pandoc Lua filter bridges the gap, turning them into native Quarto callouts.

  1. Save obsidian-callouts.lua into your Quarto project (next to _quarto.yml is fine).

  2. Add it to _quarto.yml — you can edit that file right inside Obsidian with the YAML file editor above:

    filters:
      - obsidian-callouts.lua
    

Now a callout written in Obsidian:

> [!note] My title
> body text

renders as a proper Quarto callout (note/tip/warning/caution/important, with title and -/+ fold state) in HTML, PDF, and other formats. Requires Quarto ≥ 1.3.

Quarto in academia

A typical Quarto writing project follows four steps: gather your bibliography (e.g. exported from Zotero), data and figures; write a single .qmd in your Obsidian vault; render it with Quarto; and share the result as PDF, Word, HTML, or — from a separate .qmd — slides. Quarto's own Get Started and authoring guide cover the syntax in depth; see also the citations and cross-references pages.

Four-step Quarto writing workflow: gather bibliography, data and figures; write one .qmd in Obsidian; render with Quarto; share as PDF, Word, HTML or slides

For using more fancy templates, check various blogposts, quarto-academic-typst extension is one of the good starting points — a Typst-based template for papers and preprints with clean typography, author/affiliation blocks, and BibTeX citation support. Install per-project with quarto add kazuyanagimoto/quarto-academic-typst, then set format: academic-typst-pdf in your YAML. Typst compiles much faster than LaTeX and needs no TinyTeX install. Combine with Quarto's bibliography: + csl: fields for reference management, and keep figures/data in the same vault folder so Obsidian's graph view stays useful.

[!note] Picking the Python / R distribution Planned for a future release: plugin settings to point Quarto at a specific Python or R install (likely exposed as QUARTO_PYTHON / QUARTO_R env vars injected at compile time). Until then the plugin shells out to whatever quarto finds on PATH.

Python (jupyter engine): register the env as a Jupyter kernel (python -m ipykernel install --user --name myenv) and pin it in YAML with jupyter: myenv. Alternatively set QUARTO_PYTHON in your shell before launching Obsidian.

R (knitr engine): no YAML field selects the R binary — set QUARTO_R=/path/to/Rscript (or fix PATH) before launching Obsidian.

Verified against Quarto 1.9.

Alternatives

As of the end of 2024, there are also other plugins that make it easier to work with Obsidian and Quarto:

  • Ridian offers R code block execution and variable previews.
  • Quarto Exporter helps export Obsidian Markdown files into the QMD format.

The main difference between this plugin and these other plugins is that this plugin allows you to compile QMD files as they are, without exporting them to another folder. In this regard, it is more similar to the Pandoc plugin.

Installation

From the community plugin store (stable)

Search for qmd as md in Settings → Community plugins → Browse. The community-store version always tracks the latest stable release (currently 0.3.0).

Beta releases via BRAT

Pre-release versions (-rc.x, -beta.x) are only distributed through BRAT. The community plugin store will not show them.

  1. Install Obsidian42 - BRAT from the community plugins list.
  2. Open BRAT settings → use Add Beta plugin (the "frozen version" option is not needed).
  3. Enter the repo: danieltomasz/qmd-as-md-obsidian.
  4. BRAT reads manifest-beta.json from the repo and installs the latest pre-release tag (e.g. 0.2.0-rc.8).
  5. Enable the plugin in Settings → Community plugins.

To switch back to stable, remove the plugin from BRAT and reinstall from the community store.

Manual install from GitHub

  1. Download the latest release from the Releases section of the GitHub repository.
  2. Extract the plugin folder from the zip file to your vault's plugins directory: <vault>/.obsidian/plugins/
    • Note: On some systems, the .obsidian folder might be hidden. On macOS, press Command + Shift + Dot to reveal hidden folders in Finder.
  3. Reload Obsidian.
  4. If prompted about Safe Mode, disable it and enable the plugin. Alternatively, go to Settings → Third-party plugins, disable Safe Mode, and enable the plugin manually.

Hiding clutter from Quarto projects

If you'd like to hide additional file types, use the following CSS snippet. Save it in your snippets folder and enable it via the Appearance menu in Obsidian. You can add more file extensions as needed.

div[data-path$='.Rproj'] {
 display: none;
}

div[data-path$='.cls'] {
 display: none;
}

div[data-path$='.yml'] {
 display: none;
}

div[data-path$='.json'] {
 display: none;
}

Roadmap

  • Use Obsidian 1.8's web preview to enable seamless in-app previews. (Shipped in 0.2.0 — toggle in settings.)
  • Show an outline of .qmd headings. (Shipped in 0.2.0 — toggle in settings.)
  • Recognize {language} for code block syntax highlighting.
  • Add CSS support for callout blocks.
  • Enable the creation of new QMD files.
  • Resolve headings from {{< include >}} files in the outline.
  • Add a render command. (Shipped in 0.1.0.)

Compatibility

This plugin requires Obsidian v1.8.0 or later — the in-app preview relies on the Web viewer core plugin introduced in that version. It is desktop only: Quarto runs as an external process, which is not available on mobile.

Security

Important: Third-party plugins can access files on your computer, connect to the internet, and install additional programs.

The source code for this plugin is open and available on GitHub for audit. While I assure you that the plugin does not collect data or perform any malicious actions, installing plugins in Obsidian always involves a level of trust.

Changelog & contributing

This plugin originated in 2022 as a minimal change to a now-archived project by deathau: deathau/txt-as-md-obsidian. It has since evolved to include additional integrations and features.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Quoth
4 years ago by Eric Rykwalder
Multi-Column Markdown
4 years ago by Cameron Robinson
A plugin for the Obsidian markdown note application, adding functionality to render markdown documents with multiple columns of text.
Copy as HTML
4 years ago by Bailey Jennings
A simple plugin that copies the selected text to your clipboard as HTML
Excel to Markdown Table
4 years ago by Ganessh Kumar R P
An Obsidian plugin to paste data from Microsoft Excel, Google Sheets, Apple Numbers and LibreOffice Calc as Markdown tables in Obsidian editor.
Marjdown shortcuts
4 years ago by Jules Guesnon
🪨 Obsidian plugin that allows to write markdown from commands
Creases
4 years ago by Liam Cain
👕 Tools for effectively folding markdown sections in Obsidian
Quiet Outline
4 years ago by the_tree
Improving experience of outline in Obsidian
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
Filename Emoji Remover
4 years ago by Yüksel Tolun
A simple plugin for the note taking app Obsidian that will rename your files to remove emojis in their names.
ExcaliBrain
4 years ago by Zsolt Viczian
A graph view to navigate your Obsidian vault
Obsidian GoLinks
4 years ago by David Brownman (@xavdid)
Turn go/links into clickable elements in Obsidian
Hard Breaks
4 years ago by Börge Kiss
↩ A plugin for Obsidian that adds functionality to force hard line breaks
Heading Shifter
4 years ago by kasahala
Easily Shift and Change markdown headings.
Blockquote Levels
4 years ago by Carlo Zottmann
A plugin for Obsidian (https://obsidian.md) that adds commands for increasing/decreasing the blockquote level of the current line or selection(s).
Table Generator
4 years ago by Boninall
A plugin for generate markdown table quickly like Typora.
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
Dirtreeist
4 years ago by kasahala
Render a directory Structure Diagram from a markdown lists in codeblock.
Obsidian Handlebars Template Plugin
4 years ago by Sean Quinlan
This is a plugin for Obsidian adding support for the Handlebars template engine in Obsidian notes
Markdown to Jira Converter
4 years ago by muckmuck
An obsidian.md plugin, which provides a markdown to jira markup converter
Obsidian markdown export
4 years ago by bingryan
This plugin allows to export directory/single markdown to a folder. support output format(html/markdown/text)
Obsidian Clipper
3 years ago by John Christopher
Obsidian plugin that allows users to clip parts of a website into their obsidian daily note (or new note)
Image Captions
3 years ago by Alan Grainger
Add captions to images with inline Markdown and link support. The caption format is compatible with the CommonMark spec and other Markdown applications.
Console Markdown Plugin
3 years ago by Daniel Ellermann
An Obsidian plugin which renders console commands and their output.
Advanced Slides
3 years ago by MSzturc
Create markdown-based reveal.js presentations in Obsidian
Marp
3 years ago by JichouP
Plugin to use Marp with Obsidian
O2
3 years ago by haril song
Converts obsidian markdown syntax to other platforms.
ChatGPT MD
3 years ago by Bram Adams
A (nearly) seamless integration of ChatGPT into Obsidian.
Image Upload Toolkit
3 years ago by Addo Zhang
An obsidian plugin for uploading local images embedded in markdown to remote store and export markdown for publishing to static site.
Avatar
3 years ago by froehlichA
An obsidian plugin for displaying an avatar image in front of your notes.
Links
3 years ago by MiiKey
manipulate & manage obisidian links
PubScale
3 years ago by piriwata
An obsidian plugin for insert your note into a PlanetScale table
Confluence to Obsidian
3 years ago by K
import confluence space into obsidian
Recipe Grabber
3 years ago by seethroughdev
File Include
3 years ago by Till Hoffmann
Markdown Link Space Encoder
3 years ago by Ron Kosova
Obsidian plugin to automatically encode spaces to %20 in Markdown-style links
Markdown Blogger
3 years ago by Alexa Fazio
Allows developers to push markdown notes to their local blog, portfolio, or static site. Works with Astro.js, Next.js, and any other framework configured to render markdown pages.
Markdown Tree
3 years ago by carvah
Introducing a powerful plugin that revolutionizes directory tree creation. With its intuitive Markdown-inspired coding style, this plugin empowers users to effortlessly and swiftly construct intricate directory trees.
Auto Front Matter
3 years ago by conorzhong
Markdown to Slack Message
3 years ago by Woongshik Choi
Postfix
3 years ago by Bhagya Nirmaan Silva (@bhagyas)
A postfix plugin for Obsidian
Floccus Bookmarks to Markdown
3 years ago by mddevils
Sheets Extended
3 years ago by NicoNekoru
Plugin that adds features to tables in obsidian including merging, vertical headers, and custom css
Pickly PageBlend
3 years ago by Dmitrii Mitrichev
The easiest way to share your Obsidian notes
Recipe view
3 years ago by lachholden
View your Obsidian notes as interactive recipe cards while you cook.
Markdown table checkboxes
3 years ago by DylanGiesberts
Obsidian plugin. Allows for the usage of checkboxes inside markdown tables.
MagicCalendar
3 years ago by Vaccarini Lorenzo
An obsidian plugin that exploit a natural language processing engine to find potential events and sync them with iCalendar
Discord Message Formatter
3 years ago by Emile Durkheim
Obsidian.md plugin that lets you copy Discord conversations and perfectly formats them to Obsidian Markdown!
Markdown Image Caption
3 years ago by Hananoshika Yomaru
Generate image caption easily. Completely markdown-based.
Global Markdown Encryption
3 years ago by shlemiel
a plugin for encrypting obsidian markdowns in-memory, single password based.
Slackify Note
3 years ago by Jeremy Overman
File Cleaner Redux
3 years ago by husjon
A plugin for Obsidian to help clean up files in your vault
Autocorrect Formatter
3 years ago by b-yp
A plugin running on Obsidian that utilizes autocorrect to format Markdown content.
Highlight Helper
3 years ago by Chongmyung Park
Helper to collect highlight in Obsidian
Meal Plan
2 years ago by Tyler Mayoff
A meal plan & recipe manager plugin for Obsidian
Strip Internal Links
2 years ago by Adi Ron
A simple Obsidian plugin to strip internal links from files
Reason
2 years ago by Joshua Pham
Digest your Obsidian notes
My Bible
2 years ago by GsLogimaker
Your own customization bible in your personal vault!
Task list
2 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
GitHub Sync
2 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Simple File Push
2 years ago by Kim Hudaya
Simple file push blog plugin
Quadro
2 years ago by Chris Grieser (aka pseudometa)
Obsidian Plugin for social-scientific Qualitative Data Analysis (QDA). An open alternative to MAXQDA and atlas.ti, using Markdown to store data and research codes.
Yesterday
2 years ago by Dominik Mayer
Obsidian plugin providing Yesterday journaling support
Cooklang
2 years ago by Roger Veciana i Rovira
Foodiary
2 years ago by vkostyanetsky
Food tracker plugin for Obsidian
Mehrmaid
2 years ago by huterguier
Rendering Obsidian Markdown inside Mermaid diagrams.
Slurp
2 years ago by inhumantsar
Slurps webpages and saves them as clean, uncluttered Markdown. Think Pocket, but better.
Enhanced Copy
2 years ago by Mara-Li
A obsidian plugin that allows to copy in markdown in reading view or canvas read-only view, creating profile and transform the text during copy.
Slides Extended
2 years ago by Erin Schnabel (original: MSzturc)
Create markdown-based reveal.js presentations in Obsidian
ii
2 years ago by Wilson
The main feature of this plugin is to quickly insert common Markdown code and HTML code, including Sup, Sub, Audio, Video, Iframe, Left-Center-Right Alignment, Variables, Footnotes, Callout, Anchor Points, HTML Comments and so on.
Docxer
2 years ago by Developer-Mike
🚀 Boost your productivity by previewing and converting Word files easily to markdown.
Prettier
2 years ago by GoodbyeNJN
Sheet Plus
2 years ago by ljcoder
obsidian spreadsheets solutions
Interactive Code Blocks
2 years ago by Student Assistenten Team Deeltaken
Spoilers
2 years ago by Jacobtread
Spoiler blocks for Obsidian
Asciidoc Reader
2 years ago by voidgrown
Obsidian plugin for reading AsciiDoc files
Dataview Serializer
2 years ago by Sébastien Dubois
Obsidian plugin that gives you the power of Dataview, but generates Markdown, making it compatible with Obsidian Publish, and making the links appear on the Graph.
Dataview Publisher
2 years ago by UD
Output markdown from your Dataview queries and keep them up to date. You can also be able to publish them.
AI Chat as Markdown
2 years ago by Charl P. Botha
Better Markdown Links
2 years ago by mnaoumov
Obsidian plugin that adds support for angle bracket links and manages relative links properly
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
Marker PDF to MD
2 years ago by L3N0X
Make use of different AI models to convert your pdfs into markdown with perfect ocr, latex formulas, tables, images and more! Supports Mistral AI OCR (free) and self hosted variants!
Recursive Copy
2 years ago by datawitch
Import GitHub Readme
2 years ago by Chasebank87
Markdown prettifier
6 years ago by pelao
A markdown prettifier for obsidian
Mind Map
6 years ago by James Lynch
An Obsidian plugin for displaying markdown notes as mind maps using Markmap.
Markdown Formatting Assistant
5 years ago by Reocin
This Plugin provides a simple WYSIWYG Editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.
Mochi Cards Exporter
5 years ago by kalbetre
Mochi Cards Exporter Plugin for Obsidian
Extract url content
5 years ago by Stephen Solka
Plugin to extract markdown out of urls
Table Extended
5 years ago by AidenLx
Extend basic table in Obsidian with MultiMarkdown table syntax
mdx as md
5 years ago by Nikolay Kozhukharenko
Edit mdx files in Obsidian.md as if they were markdown
Kanban
5 years ago by mgmeyers
Create markdown-backed Kanban boards in Obsidian.
Markdown Furigana
5 years ago by Steven Kraft
Simple Markdown to Furigana Rendering Plugin for Obsidian
Enhancing Mindmap
5 years ago by Mark
obsidian plugin editable mindmap,you can edit mindmap on markdown file
Paste Mode
5 years ago by Jacob Levernier
Obsidian Notes plugin for pasting text and blockquotes to the cursor's current level of indentation.
Markdown Attributes
5 years ago by Jeremy Valentine
Add attributes to elements in Obsidian
Linter
5 years ago by Victor Tao
An Obsidian plugin that formats and styles your notes with a focus on configurability and extensibility.
Emoji Shortcodes
5 years ago by phibr0
Emoji Shortcodes - Obsidian Plugin | Adds Support for Emoji Shortcodes to Obsidian
ReadItLater
5 years ago by Dominik Pieper
OzanShare Publish
5 years ago by Ozan Tellioglu
This plugin allows you to publish your markdown notes with a single click directly from your Obsidian vault.
Tweet to Markdown
5 years ago by kbravh
An Obsidian.md plugin to save tweets as Markdown files.
Copy as LaTeX
5 years ago by mo-seph
Quick plugin to be able to copy/paste from Obsidian/Markdown into a Latex document
CardBoard
5 years ago by roovo
An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
CookLang Editor
5 years ago by death_au/cooklang
Edit and display Cooklang recipes in Obsidian
Remove HTML Tag
2 years ago by ChenPengyuan
Immersive Translate
2 years ago by imfenghuang
Immersive Translate For Obsidian
Quarto Exporter
2 years ago by Andreas Varotsis
Export Obsidian notes to Quarto-compatible QMD files.
Copy Section
2 years ago by skztr
Obsidian.md plugin adding a Copy button to the top of Headed sections
Advanced Copy
2 years ago by leschuster
An Obsidian plugin to copy Markdown and transform it into HTML, Anki, or any custom format. Create custom profiles with versatile templates tailored to your workflow.
Arweave Uploader
2 years ago by makesimple
Hexo Toolkit
2 years ago by Xiangru
An Obsidian plugin for maintaining Hexo posts.
Markdown Timeline
2 years ago by Jiaheng Zhang
An Obsidian plugin to record the events in a Flashback timeline
Markdown Tags
2 years ago by John Smith III
Enhance your Markdown documents with custom tags. Use predefined or custom labels, customizable colors, and arrow indicators to visually track tasks and statuses.
Ridian
2 years ago by Michel Nivard
This is Ridian: R in Obsidian
Insta TOC
2 years ago by Nick C.
Generate, update, and maintain a table of contents for your notes while typing in real time.
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Chronos Timeline
2 years ago by Claire Froelich
Render interactive timelines in your Obsidian notes from simple Markdown.
Cooksync
a year ago by Cooksync
This is the official Obsidian plugin for Cooksync, maintained by the Cooksync team. It enables automatic import of recipe data from your Cooksync account. Note that this plugin requires a Cooksync account - a paid service that makes it easy to collect recipes from almost any recipe website.
WhatsApp export note
a year ago by JoaoEmanuell
Obsidian plugin to export notes for whatsapp
Callout Copy Buttons
a year ago by Aly Thobani
An Obsidian plugin that adds copy buttons to callout blocks in your notes.
Attachments MD Indexer
a year ago by Ian Inkov
Converts Obsidian canvas files to markdown index files, making canvas content searchable and graph-viewable within Obsidian.
Automatic Linker
a year ago by Kodai Nakamura
Extended Markdown Syntax
a year ago by Kotaindah55
Extend your Markdown syntax using delimiters instead of HTML tags, such as underlining, superscript, subscript, highlighting, and spoiler.
Title As Link Text
a year ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Chat clips
a year ago by sleepingraven
Record chat in ordinary markdown list.
Student Repo
a year ago by Feirong.zfr
学生知识库助手(Student Repository Helper)是一个面向学生或学生家长的Obsidian 插件,这款插件旨在解决学生在学习阶段面临的资料管理难题,将学习过程中产生的各类重要资料,如试卷、笔记、关键文档、绘画手工作品等,进行系统性的数字化整合与管理,并利用 AI 助手定期进行学习分析总结。随着时间的推移,它将助力你逐步搭建起一座专属你自己的知识宝库,这座宝库将伴随你一生,成为你知识成长与积累的见证。
Advanced Progress Bars
a year ago by cactuzhead
Obsidian plugin to create custom progress bars
Markitdown File Converter
a year ago by Ethan Troy
Integrate Microsoft's Markitdown tool to convert various file formats to Markdown for your vault.
PDF Folder to Markdowns
a year ago by CrisHood
Convert a folder of PDFs into a folder of Markdown files with embedded PDFs. This plugin is useful for users who want to migrate their PDF notes from different apps (e.g., Boox) or organize their reference materials inside Obsidian.
WeWrite
a year ago by Learner Chen
Obsidian plugin to render note as WeChat MP article.
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Markdown Calendar Generator
a year ago by Zach Russell
An intentionally simple obsidian markdown table calendar generator
Simple Columns
a year ago by Josie
An Obsidian plugin that lets you create easily resizable and customizable columns in your notes.
Keyboard Formatter
9 months ago by Lauloque
Formats keyboard text (kbd) in your Obsidian notes quickly and consistently.
Note Minimap
9 months ago by Yair Segel
Add a minimap to your Obsidian notes.
Horizontal Blocks
8 months ago by iCodeAlchemy
Bring Notion-style layouts to Obsidian — with side-by-side, resizable markdown blocks that support full Obsidian syntax including images, embeds, and internal links.
GH Links Shortener
8 months ago by David Barnett
Obsidian plugin to set shortened link text for pasted GitHub URLs
Table Checkbox Renderer
7 months ago by Daniel Aguerrevere
Interactive checkboxes for Markdown tables in Obsidian. Toggle checkboxes in Reading Mode and instantly update your Markdown file. Supports multiple checkboxes per cell and any table layout.
SlashComplete
7 months ago by Spiderpig86
Notion-style Markdown autocompletion for Obsidian.
Archivist Importer
3 months ago by Archivist AI
Import selected vault files into Archivist campaigns.
Smart Export
3 months ago by Iván Sotillo
Plugin that follows wikilinks to a configurable depth, joining the notes into a single export.