qmd as md

by Daniel Borek
5
4
3
2
1
Score: 42/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

107
stars
9,071
downloads
9
forks
1,277
days
2
days
492
days
6
total PRs
0
open PRs
1
closed PRs
5
merged PRs
3
total issues
3
open issues
0
closed issues
0
commits

Latest Version

a year ago

Changelog

Added an option to run Quarto preview for the current qmd file.

README file from

Github

QMD as Markdown Obsidian Plugin

A plugin for Obsidian that allows seamless editing of QMD files as if they were Markdown.

QMD files combine Markdown with executable code cells and are supported by Quarto, an open-source publishing system. These files are compatible with editors like RStudio and VSCode.

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.

As of the end of 2024, there are also other plugins exist 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.


Version History

0.1.0-rc.1 (beta — BRAT only)

  • Added Render Quarto to PDF command and ribbon icon. Runs quarto render <file> on the active .qmd file (output format driven by the document's YAML — format: typst for Typst, format: pdf for LaTeX).
  • Added "Open Compiled PDF in Obsidian" setting toggle. When enabled, the rendered PDF opens inside Obsidian using the built-in PDF viewer.
  • PDF opens in a vertical split to the right of the source .qmd, so the source tab is no longer replaced.
  • Re-running the render reuses the existing PDF tab (reloads the file in place) instead of stacking new tabs.
  • Command exposes a file-output icon, so plugins like Commander can pin it to the toolbar.

0.0.3

  • Added an option to run Quarto preview for the current qmd file.

0.0.2

  • Repurposed the plugin to enable viewing and editing of QMD files.
  • Made the plugin available via BRAT and Obsidian.

0.0.1

  • Initial release by death_md, supporting .txt files.

To-Do List

  • Use Obsidian 1.8’s web preview to enable seamless in-app previews.
  • Recognize {language} for code block syntax highlighting.
  • Add CSS support for callout blocks.
  • Enable the creation of new QMD files.
  • Add a render command. (0.1.0-rc.1 — render to PDF, open inside Obsidian.)

Rendering to PDF (beta)

Available from 0.1.0-rc.1 via BRAT.

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 YAML format) 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.

  • 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.
  • 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.

Enhancing Quarto File Integration in Obsidian

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

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;
}

Compatibility

This plugin requires Obsidian v0.10.12 or later to work properly, as the necessary APIs were introduced in this version.


Installation

From Within Obsidian

The plugin is available in Obsidian's community plugin list. The community-store version always tracks the latest stable release (currently 0.0.3).

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 → Add Beta plugin with frozen version is not needed — use Add Beta plugin.
  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.1.0-rc.1).
  5. Enable the plugin in Settings → Community plugins.

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

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.

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.


Development

This project is built using TypeScript for type checking and documentation.
It relies on the latest Obsidian plugin API in TypeScript Definition format, which includes TSDoc comments for documentation.

Note: The Obsidian API is in early alpha and may change at any time.

To contribute or customize the plugin:

  1. Clone this repository.
  2. Run npm i or yarn to install dependencies.
  3. Use npm run build to compile the plugin.
  4. Copy manifest.json, main.js, and styles.css to a subfolder in your plugins directory: <vault>/.obsidian/plugins/<plugin-name>/
  5. Reload Obsidian to apply changes.

Alternatively, clone the repository directly into your plugins folder. After installing dependencies, run npm run dev to enable watch mode for live compilation.
Reload Obsidian (Ctrl + R) to view updates.

Make targets

The makefile wraps common tasks. Run make help for the list:

Target What it does
make build Install deps (npm ci when package-lock.json exists, otherwise npm install), build main.js, then zip.
make zip Bundle main.js + manifest.json into qmd-as-md.zip.
make clean Wipe node_modules and build artefacts.
make release-beta Publish a GitHub pre-release using the version in manifest-beta.json.
make release-stable Publish a GitHub release using the version in manifest.json.

Cutting a release

Two release channels share the same main branch:

  • Stablemanifest.json is the source of truth (e.g. 0.0.3). Goes to the community plugin store.
  • Betamanifest-beta.json is the source of truth (e.g. 0.1.0-rc.1). Distributed only via BRAT. Pre-release semver suffixes (-rc.x, -beta.x) are accepted by BRAT but rejected by the community store, so betas live exclusively here.

To publish a release:

# Beta — bump manifest-beta.json first, then:
make release-beta                          # interactive prompt for notes
make release-beta NOTES="Fixed leaf bug"   # non-interactive

# Stable — bump manifest.json first, then:
make release-stable

Both targets:

  1. Check that gh, node, npm, and zip are on PATH.
  2. Read the version from the appropriate manifest, and refuse to overwrite an existing tag.
  3. Build main.js fresh (npm ci if package-lock.json exists, otherwise npm install).
  4. Create a GitHub release tagged with the version (no v prefix — Obsidian convention) and attach main.js plus a correctly-versioned manifest.json. The beta target stages manifest-beta.json into a tempdir under the literal name manifest.json so BRAT finds the asset it expects.
  5. Mark beta releases as --prerelease.

Requirements: gh authenticated against the repo, working tree clean.

After a beta release, BRAT users can hit Check for updates to all beta plugins to pull it.

Troubleshooting the release flow

Could not read version from manifest-beta.json / empty version

The recipe runs node -p "require('./manifest-beta.json').version" and treats an empty result as a hard error. Common causes:

  • Wrong working directory. The recipe expects to be run from the repo root. cd to it (pwd should show the directory containing manifest-beta.json) before running make.
  • Manifest missing or malformed. The recipe now prints the real Node.js error before bailing — read the message rather than the generic line.
  • gh not authenticated for this repo. Run gh auth status and gh repo set-default danieltomasz/qmd-as-md-obsidian if needed.
Variables silently lost between recipe lines (macOS default Make)

macOS ships GNU Make 3.81 (released 2006), which predates .ONESHELL (added in 3.82, 2010). On 3.81 the directive is silently ignored, so each recipe line runs in its own shell and any variable set on one line is gone by the next. The recipes in this repo are written as single \-joined shell invocations specifically to remain compatible with 3.81 — do not add .ONESHELL back without verifying the local make --version.

If you want a modern Make on macOS:

brew install make
gmake release-beta NOTES="…"      # invoked as `gmake`, not `make`
BRAT says "this is not an Obsidian plugin"

BRAT walks the latest GitHub release looking for an asset named literally manifest.json. The previous version of this Makefile relied on gh release create's path#displayname rename syntax, which silently no-op'd in some gh CLI versions and uploaded the asset under its real basename (e.g. qmd-release-manifest.json) — invisible to BRAT. The current recipe sidesteps the rename mechanism by staging the file under the correct name in a tempdir before upload. If BRAT still rejects a release, inspect the assets:

gh release view <tag> | grep -i asset

The list must contain both main.js and manifest.json (exact spelling).

Release was created but gh release create failed silently

Older versions of the recipe used long \-joined chains without set -e. A failed npm install/npm run build or missing tool would let the chain continue past the failure, eventually erroring on gh release create with no clear cause. The current recipe sets set -e at the start of each release target, validates each tool with command -v, and verifies main.js was produced before invoking gh. If something still goes wrong, the first error surfaced by the recipe is the real one — read up, not down.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
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.
Advanced Progress Bars
a year ago by cactuzhead
Obsidian plugin to create custom progress bars
Advanced Slides
3 years ago by MSzturc
Create markdown-based reveal.js presentations in Obsidian
AI Chat as Markdown
2 years ago by Charl P. Botha
Archivist Importer
2 months ago by Archivist AI
Import selected vault files into Archivist campaigns.
Arweave Uploader
2 years ago by makesimple
Asciidoc Reader
2 years ago by voidgrown
Obsidian plugin for reading AsciiDoc files
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.
Auto Front Matter
3 years ago by conorzhong
Autocorrect Formatter
2 years ago by b-yp
A plugin running on Obsidian that utilizes autocorrect to format Markdown content.
Automatic Linker
a year ago by Kodai Nakamura
Avatar
3 years ago by froehlichA
An obsidian plugin for displaying an avatar image in front of your notes.
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
Better Markdown Links
2 years ago by mnaoumov
Obsidian plugin that adds support for angle bracket links and manages relative links properly
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).
Callout Copy Buttons
a year ago by Aly Thobani
An Obsidian plugin that adds copy buttons to callout blocks in your notes.
CardBoard
4 years ago by roovo
An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
Chat clips
a year ago by sleepingraven
Record chat in ordinary markdown list.
ChatGPT MD
3 years ago by Bram Adams
A (nearly) seamless integration of ChatGPT into Obsidian.
Chronos Timeline
a year ago by Claire Froelich
Render interactive timelines in your Obsidian notes from simple Markdown.
Confluence to Obsidian
3 years ago by K
import confluence space into obsidian
Console Markdown Plugin
3 years ago by Daniel Ellermann
An Obsidian plugin which renders console commands and their output.
Cooklang
2 years ago by Roger Veciana i Rovira
CookLang Editor
4 years ago by death_au/cooklang
Edit and display Cooklang recipes in Obsidian
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.
Copy as HTML
4 years ago by Bailey Jennings
A simple plugin that copies the selected text to your clipboard as HTML
Copy as LaTeX
4 years ago by mo-seph
Quick plugin to be able to copy/paste from Obsidian/Markdown into a Latex document
Copy Section
2 years ago by skztr
Obsidian.md plugin adding a Copy button to the top of Headed sections
Creases
4 years ago by Liam Cain
👕 Tools for effectively folding markdown sections in Obsidian
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.
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.
Dirtreeist
3 years ago by kasahala
Render a directory Structure Diagram from a markdown lists in codeblock.
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!
Docxer
2 years ago by Developer-Mike
🚀 Boost your productivity by previewing and converting Word files easily to markdown.
Embed 3D
a year ago by Jesse Strijker
An Obsidian Plugin for embedding 3D models in your notes. And manipulating the scenes to look the best you want
Emoji Shortcodes
5 years ago by phibr0
Emoji Shortcodes - Obsidian Plugin | Adds Support for Emoji Shortcodes to Obsidian
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.
Enhancing Mindmap
5 years ago by Mark
obsidian plugin editable mindmap,you can edit mindmap on markdown file
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
ExcaliBrain
4 years ago by Zsolt Viczian
A graph view to navigate your Obsidian vault
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.
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.
Extract url content
5 years ago by Stephen Solka
Plugin to extract markdown out of urls
File Cleaner Redux
2 years ago by husjon
A plugin for Obsidian to help clean up files in your vault
File Include
3 years ago by Till Hoffmann
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.
Floccus Bookmarks to Markdown
3 years ago by mddevils
Foodiary
2 years ago by vkostyanetsky
Food tracker plugin for Obsidian
Formatto
2 years ago by Deca
Simple, fast, and easy-to-use Obsidian Markdown formatter.
Friday
a year ago by sunwei
Write anywhere. Publish everywhere. Sync your notes, publish instantly, turn Markdown into websites.
GH Links Shortener
6 months ago by David Barnett
Obsidian plugin to set shortened link text for pasted GitHub URLs
GitHub Sync
2 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Global Markdown Encryption
3 years ago by shlemiel
a plugin for encrypting obsidian markdowns in-memory, single password based.
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.
Hexo Toolkit
a year ago by Xiangru
An Obsidian plugin for maintaining Hexo posts.
Highlight Helper
2 years ago by Chongmyung Park
Helper to collect highlight in Obsidian
Horizontal Blocks
7 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.
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.
Image Caption
5 years ago by bicarlsen
Add captions to images in Obsidian.
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.
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.
Immersive Translate
2 years ago by imfenghuang
Immersive Translate For Obsidian
Import GitHub Readme
2 years ago by Chasebank87
Insta TOC
a year ago by Nick C.
Generate, update, and maintain a table of contents for your notes while typing in real time.
Interactive Code Blocks
2 years ago by Student Assistenten Team Deeltaken
Kanban
5 years ago by mgmeyers
Create markdown-backed Kanban boards in Obsidian.
Keyboard Formatter
8 months ago by Lauloque
Formats keyboard text (kbd) in your Obsidian notes quickly and consistently.
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Links
3 years ago by MiiKey
manipulate & manage obisidian links
Linter
5 years ago by Victor Tao
An Obsidian plugin that formats and styles your notes with a focus on configurability and extensibility.
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
Marjdown shortcuts
4 years ago by Jules Guesnon
🪨 Obsidian plugin that allows to write markdown from commands
Markdown Attributes
5 years ago by Jeremy Valentine
Add attributes to elements in Obsidian
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 Calendar Generator
10 months ago by Zach Russell
An intentionally simple obsidian markdown table calendar generator
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.
Markdown Furigana
5 years ago by Steven Kraft
Simple Markdown to Furigana Rendering Plugin for Obsidian
Markdown Image Caption
3 years ago by Hananoshika Yomaru
Generate image caption easily. Completely markdown-based.
Markdown Link Space Encoder
3 years ago by Ron Kosova
Obsidian plugin to automatically encode spaces to %20 in Markdown-style links
Markdown prettifier
5 years ago by pelao
A markdown prettifier for obsidian
Markdown Sync Scroll
3 years ago by ProjectXero
Synchronize scroll in linked Markdown views.
Markdown table checkboxes
3 years ago by DylanGiesberts
Obsidian plugin. Allows for the usage of checkboxes inside markdown tables.
Markdown Tags
a year 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.
Markdown Timeline
a year ago by Jiaheng Zhang
An Obsidian plugin to record the events in a Flashback timeline
Markdown to Jira Converter
3 years ago by muckmuck
An obsidian.md plugin, which provides a markdown to jira markup converter
Markdown to Slack Message
3 years ago by Woongshik Choi
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.
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!
Markitdown File Converter
a year ago by Ethan Troy
Integrate Microsoft's Markitdown tool to convert various file formats to Markdown for your vault.
Marp
3 years ago by JichouP
Plugin to use Marp with Obsidian
mdx as md
5 years ago by Nikolay Kozhukharenko
Edit mdx files in Obsidian.md as if they were markdown
Meal Plan
2 years ago by Tyler Mayoff
A meal plan & recipe manager plugin for Obsidian
Mehrmaid
2 years ago by huterguier
Rendering Obsidian Markdown inside Mermaid diagrams.
Mind Map
5 years ago by James Lynch
An Obsidian plugin for displaying markdown notes as mind maps using Markmap.
Mochi Cards Exporter
5 years ago by kalbetre
Mochi Cards Exporter Plugin for Obsidian
More Markdown file suffix (.mdx/.svx)
4 years ago by swissmation.com
Use markdown files of additional file suffix as .mdx, .svx in Obsidian
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.
My Bible
2 years ago by GsLogimaker
Your own customization bible in your personal vault!
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
Note Minimap
8 months ago by Yair Segel
Add a minimap to your Obsidian notes.
O2
3 years ago by haril song
Converts obsidian markdown syntax to other platforms.
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)
Obsidian GoLinks
4 years ago by David Brownman (@xavdid)
Turn go/links into clickable elements in Obsidian
Obsidian Handlebars Template Plugin
3 years ago by Sean Quinlan
This is a plugin for Obsidian adding support for the Handlebars template engine in Obsidian notes
Obsidian markdown export
3 years ago by bingryan
This plugin allows to export directory/single markdown to a folder. support output format(html/markdown/text)
Outline++
2 years ago by Ryota Ushio
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.
Pandoc Extended Markdown
3 months ago by ErrorTzy
This plugin enables Obsidian to render Pandoc extended markdown lists, and adds useful sidebar for lists and footnotes
Paste Link
2 years ago by Jose Elias Alvarez
Intelligently paste Markdown links in Obsidian.
Paste Mode
5 years ago by Jacob Levernier
Obsidian Notes plugin for pasting text and blockquotes to the cursor's current level of indentation.
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.
PDF++
2 years ago by Ryota Ushio
PDF++: the most Obsidian-native PDF annotation & viewing tool ever. Comes with optional Vim keybindings.
Pickly PageBlend
3 years ago by Dmitrii Mitrichev
The easiest way to share your Obsidian notes
Postfix
3 years ago by Bhagya Nirmaan Silva (@bhagyas)
A postfix plugin for Obsidian
Prettier
2 years ago by GoodbyeNJN
PubScale
3 years ago by piriwata
An obsidian plugin for insert your note into a PlanetScale table
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.
Quarto Exporter
2 years ago by Andreas Varotsis
Export Obsidian notes to Quarto-compatible QMD files.
Quiet Outline
4 years ago by the_tree
Improving experience of outline in Obsidian
Quoth
4 years ago by Eric Rykwalder
ReadItLater
5 years ago by Dominik Pieper
Reason
2 years ago by Joshua Pham
Digest your Obsidian notes
Recipe Grabber
3 years ago by seethroughdev
Recipe view
3 years ago by lachholden
View your Obsidian notes as interactive recipe cards while you cook.
Recursive Copy
2 years ago by datawitch
Remove HTML Tag
2 years ago by ChenPengyuan
Ridian
a year ago by Michel Nivard
This is Ridian: R in Obsidian
Sheet Plus
2 years ago by ljcoder
obsidian spreadsheets solutions
Sheets Extended
3 years ago by NicoNekoru
Plugin that adds features to tables in obsidian including merging, vertical headers, and custom css
Simple Columns
10 months ago by Josie
An Obsidian plugin that lets you create easily resizable and customizable columns in your notes.
Simple File Push
2 years ago by Kim Hudaya
Simple file push blog plugin
Simple Todo
a year ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Slackify Note
2 years ago by Jeremy Overman
SlashComplete
5 months ago by Spiderpig86
Notion-style Markdown autocompletion for Obsidian.
Slides Extended
2 years ago by Erin Schnabel (original: MSzturc)
Create markdown-based reveal.js presentations in Obsidian
Slurp
2 years ago by inhumantsar
Slurps webpages and saves them as clean, uncluttered Markdown. Think Pocket, but better.
Smart Export
2 months ago by Iván Sotillo
Plugin that follows wikilinks to a configurable depth, joining the notes into a single export.
Spoilers
2 years ago by Jacobtread
Spoiler blocks for Obsidian
Strip Internal Links
2 years ago by Adi Ron
A simple Obsidian plugin to strip internal links from files
Student Repo
a year ago by Feirong.zfr
学生知识库助手(Student Repository Helper)是一个面向学生或学生家长的Obsidian 插件,这款插件旨在解决学生在学习阶段面临的资料管理难题,将学习过程中产生的各类重要资料,如试卷、笔记、关键文档、绘画手工作品等,进行系统性的数字化整合与管理,并利用 AI 助手定期进行学习分析总结。随着时间的推移,它将助力你逐步搭建起一座专属你自己的知识宝库,这座宝库将伴随你一生,成为你知识成长与积累的见证。
Table Checkbox Renderer
5 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.
Table Extended
5 years ago by AidenLx
Extend basic table in Obsidian with MultiMarkdown table syntax
Table Generator
4 years ago by Boninall
A plugin for generate markdown table quickly like Typora.
Task list
2 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
Title As Link Text
a year ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Tweet to Markdown
5 years ago by kbravh
An Obsidian.md plugin to save tweets as Markdown files.
WeWrite
a year ago by Learner Chen
Obsidian plugin to render note as WeChat MP article.
WhatsApp export note
a year ago by JoaoEmanuell
Obsidian plugin to export notes for whatsapp
Yesterday
2 years ago by Dominik Mayer
Obsidian plugin providing Yesterday journaling support