Tabsdown

by grafanakibana
5
4
3
2
1
Score: 49/100

Description

The Tabsdown plugin adds tabbed content blocks to notes using ordinary Markdown fences instead of custom page layouts. It renders each tab through the normal Markdown pipeline, so links, embeds, callouts, math, Mermaid diagrams and compatible community plugin blocks can live inside the same switchable view. The plugin stays interactive in Reading View and in Live Preview when the cursor is outside the block, while Source Mode keeps the raw fenced text visible. It also supports nested tabs, optional Lucide icons, theme aware styling, Style Settings controls and keyboard friendly tab semantics. When the source is malformed, it shows a diagnostic instead of hiding the content, which makes broken blocks easier to fix.

Reviews

No reviews yet.

Stats

6
stars
773
downloads
1
forks
47
days
1
days
1
days
50
total PRs
0
open PRs
10
closed PRs
40
merged PRs
21
total issues
0
open issues
21
closed issues
69
commits

Latest Version

a day ago

Changelog

Changes

  • build(deps-dev): bump fast-uri from 3.1.5 to 3.1.7 (#70)
  • build(deps): bump @vitest/mocker and vitest (#73)
  • build(deps-dev): bump js-yaml from 4.3.1 to 4.3.2 (#74)
  • Release 1.5.0: tab editing and corner-radius controls (#76)

Automated evidence

SHA-256

5c8a50f5694e2780fc40bf3efe96b63e4ad690611a1aa421455edb0e89ca3e3d  main.js
a9e814b6db01248f3e4da7510d260ae0f70b782c132bf05fb5c465a005623149  manifest.json
c7f1156d292047455f15dc51116525da483eb08853487c6457acc0c84d0a5c62  styles.css

README file from

Github

Tabsdown

Tabsdown turns ordinary Markdown into theme-native tabs in Obsidian. Tabs can contain notes, queries, embeds, callouts, math, Mermaid diagrams, and compatible community-plugin blocks.

What it does

  • Keeps each tab set in a fenced tabsdown block, so the note stays readable Markdown.
  • Works in Reading View and Live Preview on desktop and mobile.
  • Supports nested tabs, formatted labels, Lucide icons, and tab lists on any side.
  • Uses Obsidian's Markdown renderer, so links, embeds, and compatible plugin blocks keep working.
  • Matches the active theme and can be adjusted with Style Settings or CSS snippets.

Syntax

Start each tab with a column-zero tab: <label> marker. A block needs at least two non-empty, unique labels. Add optional block settings as comma-separated property=value entries on a column-zero config: line before the first tab, or right-click the block in Reading View or Live Preview and choose directly from the Position, Overflow, Density, Personality, Palette, and Alignment submenus.

The context-menu action is available only when the rendered block has a writable backing Markdown file.

Add, rename, and delete tabs

  • Right-click a block and choose Add tab to append a tab with an empty body.
  • Double-click a tab to rename it, or right-click its label and choose Rename tab.
  • Right-click a tab and choose Delete tab to remove it and its contents after confirmation. Delete is disabled when only two tabs remain.
  • Enter saves the label. Escape or clicking outside cancels. A new tab is saved only after you enter a non-empty, unique label.
  • The editor shows the name, including Markdown formatting. Any icon: prefix stays hidden and is preserved when saving.

These actions update the backing Markdown, including nested and embedded blocks. If the note changes while a label is being edited, the save stops to avoid overwriting other changes. Ordinary tab switching never edits the note.

Add tab appears first in the context menu. Tab actions are separated from the block's style settings. Menus use Obsidian's platform-native behavior. Menu icons appear where Obsidian supports them; its current native macOS menu bridge omits icons.

Writing a block

````tabsdown
tab: Greedy

Greedy chooses the largest usable coin.

tab: Dynamic programming

```dataview
TABLE file.mtime
FROM "Algorithms"
```
````

Use matching backtick or tilde fences. The outer fence must be longer than any matching fence inside it. The example uses four backticks outside and three around the Dataview query. Increase the outer fence again if a tab body contains a longer fence.

~~~tabsdown
config: position=left, layout=multi, density=compact, personality=rail, palette=secondary, alignment=center

tab: Python
print("Hello Tabsdown")

tab: JavaScript
console.log("Hello Tabsdown");
~~~

position=top|left|right|bottom places the tab list and layout=one|multi keeps labels on one scrollable line or allows wrapping. Other overrides are density=default|compact, personality=button|underline|separator|rail, palette=primary|secondary, and alignment=start|center|equal-width. The example is the canonical form saved by the menu. Choices update Markdown immediately and stop without overwriting when the rendered block no longer matches the note.

Omitted values inherit in this order: explicit block override, automatic Compact density on mobile or at a container width of 28rem or less, position Style Settings, global Style Settings, then the built-in fallback. Explicit Default or Compact density stays authoritative on every device and width. The first tab starts active. Empty tab bodies are valid. To render a literal marker-looking line, escape it as \tab:.

Icons

Start a label with icon:<name> to put one of Obsidian's bundled Lucide icons before it:

```tabsdown
tab: icon:code Python
tab: icon:file-text Notes
```

An unknown icon name renders no icon, and every tab still needs a label. Escape a literal label as tab: \icon:name.

Label formatting

Labels support exactly **bold**, *italic*, ~~strikethrough~~, and backtick inline code. The same formatting works after an icon:<name> prefix and in public mountTabs labels. Multiple non-overlapping formats can share one label.

Links, wikilinks, images, raw HTML, headings, lists, and other Markdown stay visible as literal text. Unmatched, nested, overlapping, empty, or whitespace-only delimiter runs also stay literal; labels never create links or other interactive descendants.

Nested tabs

A tab body can hold another tabsdown block, as long as its fence is shorter than the one around it:

````tabsdown
tab: Backend

```tabsdown
tab: Python
tab: Go
```

tab: Frontend

Markers inside a nested block belong to that block, so the inner tab: lines above do not split the outer one and need no escaping. Each level places its own tab list and keeps its own active tab. A config: line applies only to the level that declares it.

Obsidian modes

Mode Behavior
Reading View Interactive tabs on desktop and mobile. Switching tabs never edits the note.
Live Preview Interactive tabs while the cursor is outside the block; fenced source while editing inside it.
Source Mode Raw fenced Markdown only.

Installation

Community plugins

Use this method after Tabsdown is listed in Obsidian's Community Plugins directory:

  1. Open Settings → Community plugins.
  2. Select Browse, search for Tabsdown, then select Install.
  3. Select Enable.

BRAT

Published releases and prereleases can be installed with BRAT:

  1. Install and enable Obsidian42 - BRAT from Community Plugins.
  2. Run BRAT: Add a beta plugin for testing from the command palette.
  3. Enter grafanaKibana/obsidian-tabsdown.
  4. Enable Tabsdown under Settings → Community plugins.

BRAT can install only a published release or prerelease, not an unpublished draft.

Manual installation

  1. Download main.js, manifest.json, and styles.css from the same GitHub release.
  2. Create <Vault>/.obsidian/plugins/tabsdown/.
  3. Copy the three downloaded files directly into that directory.
  4. Reload Obsidian.
  5. Enable Tabsdown under Settings → Community plugins.

Do not mix assets from different releases.

Guides

Troubleshooting

  • Fenced source instead of tabs: Enable Tabsdown, switch to Reading View, or move the cursor outside the block in Live Preview.
  • Diagnostic shown: Check that tab: markers start at column zero, labels are unique, and the block has at least two tabs.
  • An inner code block closes Tabsdown: Make the outer fence longer than every fence inside it, or use tildes.
  • An embed or plugin block fails: Test the same Markdown outside Tabsdown first.
  • Still stuck: Open an issue with the source block, Obsidian version, theme, and any related plugins.

Development and releases

Tabsdown runs entirely inside Obsidian and makes no network requests. It collects no telemetry, requires no account or payment, shows no advertising, accesses only files inside the vault, and includes no closed-source components.

License

MIT

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Text to Speech
5 years ago by Johannes Theiner
Text to speech for Obsidian. Hear your notes.
Quoth
5 years ago by Eric Rykwalder
Multi-Column Markdown
5 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
5 years ago by Bailey Jennings
A simple plugin that copies the selected text to your clipboard as HTML
Excel to Markdown Table
5 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
5 years ago by Jules Guesnon
🪨 Obsidian plugin that allows to write markdown from commands
Creases
5 years ago by Liam Cain
👕 Tools for effectively folding markdown sections in Obsidian
Vim Multibyte Char Search
5 years ago by anselmwang
Search multibyte characters by the corresponding input method encoding. For example, for Chinese, search "用来" by "yl"
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.
Literate Haskell
4 years ago by James Jensen
An obsidian plugin for integrating .lhc files into your PKM.
New Tab Default Page
4 years ago by pseudometa
Obsidian plugin to open a note of your choice when creating a new tab, like in the browser.
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.
qmd as md
4 years ago by Daniel Borek
A plugin for Obsidian that enables editing and compiling `qmd` Quarto files.
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)
External Link Opener
4 years ago by zorazrr
Obsidian plugin to open external links in modals or tabs
Obsidian Clipper
4 years ago by John Christopher
Obsidian plugin that allows users to clip parts of a website into their obsidian daily note (or new note)
Mermaid Tools
4 years ago by dartungar
Tools for improved Mermaid.js experience in Obsidian.md
Image Captions
4 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
4 years ago by Daniel Ellermann
An Obsidian plugin which renders console commands and their output.
Advanced Slides
4 years ago by MSzturc
Create markdown-based reveal.js presentations in Obsidian
Restore Tab Key
4 years ago by jerrymk
An Obsidian plugin to make the tab key insert a tab, and make it feel like any other IDE regarding tabs and indentation.
Marp
4 years ago by JichouP
Plugin to use Marp with Obsidian
ChatGPT MD
4 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
Mermaid Themes
3 years ago by jvsteiner
mermaid themes for obsidian
Importer
3 years ago by Obsidian
Convert your data to Markdown files you can use in Obsidian. Works with Apple Notes, OneNote, Evernote, Notion, Google Keep, and many other formats.
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
CodeBlock Tabs
3 years ago by Jemin Mau
Create tab group for contiguous codeblocks.
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
Mononote
3 years ago by Carlo Zottmann
An Obsidian plugin that ensures each note occupies only one tab. If a note is already open, its existing tab will be focussed instead of opening the same file in the current tab.
HTML Tabs
3 years ago by Patrick Tournet
Obsidian plugin allowing the creation and rendering of Tabs and tab panels in your 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
Minitabs
3 years ago by ssjy1919
Obsidian tabs
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
Strip Internal Links
3 years ago by Adi Ron
A simple Obsidian plugin to strip internal links from files
Reason
3 years ago by Joshua Pham
Digest your Obsidian notes
My Bible
3 years ago by GsLogimaker
Your own customization bible in your personal vault!
Task list
3 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
GitHub Sync
3 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Simple File Push
3 years ago by Kim Hudaya
Simple file push blog plugin
Quadro
3 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
3 years ago by Dominik Mayer
Obsidian plugin providing Yesterday journaling support
Tab Shifter
3 years ago by Joshua Rozner
Cooklang
3 years ago by Roger Veciana i Rovira
Tab Selector
3 years ago by namikaze-40p
This is an Obsidian plugin which can quickly switch tabs in various ways.
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
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.
Shrink pinned tabs
2 years ago by Nicolas Lœuillet
Obsidian plugin to shrink pinned tabs in order to save screen space
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
6 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
6 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
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
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
Mermaid Popup
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.
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.
Tab Limiter
2 years ago by Henry Gustafson
Limits the number of tabs that can be opened in Obsidian
Cooksync
2 years 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
2 years ago by JoaoEmanuell
Obsidian plugin to export notes for whatsapp
Callout Copy Buttons
2 years ago by Aly Thobani
An Obsidian plugin that adds copy buttons to callout blocks in your notes.
Autofit Tabs
2 years ago by Bradley Wyatt
Obsidian Plugin that automatically adjusts tab header widths in real-time to perfectly fit each tab's title content while maintaining a clean, seamless interface that prevents awkward text truncation and ensures optimal readability of your document titles.
Attachments MD Indexer
2 years ago by Ian Inkov
Converts Obsidian canvas files to markdown index files, making canvas content searchable and graph-viewable within Obsidian.
Automatic Linker
2 years ago by Kodai Nakamura
Extended Markdown Syntax
2 years 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
2 years ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Chat clips
2 years ago by sleepingraven
Record chat in ordinary markdown list.
Export Graph View
2 years ago by Sean McGhee
Plugin to export your vault's graph view.
Tab Group Arrangement
2 years ago by situ2001
Arrange the tab groups of Obsidian in a more flexible way
Student Repo
2 years ago by Feirong.zfr
学生知识库助手(Student Repository Helper)是一个面向学生或学生家长的Obsidian 插件,这款插件旨在解决学生在学习阶段面临的资料管理难题,将学习过程中产生的各类重要资料,如试卷、笔记、关键文档、绘画手工作品等,进行系统性的数字化整合与管理,并利用 AI 助手定期进行学习分析总结。随着时间的推移,它将助力你逐步搭建起一座专属你自己的知识宝库,这座宝库将伴随你一生,成为你知识成长与积累的见证。
Advanced Progress Bars
a year ago by cactuzhead
Obsidian plugin to create custom progress bars
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.
Smooth Navigator
a year ago by Michael Schrauzer
Smoothly cycle through open files and splits in Obsidian via the keyboard.
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Rainbow-Colored Sidebar
a year ago by Kevin Woblick
Automatically color your sidebar like a rainbow. No configuration needed. 18 themes included.
Simple Colored Folder
a year ago by Mara-Li
Color each folder starting by their root. Allow to detecting root directly by obsidian ; and configuring using Style Settings.
Markdown Calendar Generator
a year ago by Zach Russell
An intentionally simple obsidian markdown table calendar generator
Animated Cursor
a year ago by Kotaindah55
Simple yet smooth animated cursor.
Simple Columns
a year ago by Josie
An Obsidian plugin that lets you create easily resizable and customizable columns in your notes.
Keyboard Formatter
a year ago by Lauloque
Formats keyboard text (kbd) in your Obsidian notes quickly and consistently.
Note Minimap
a year ago by Yair Segel
Add a minimap to your Obsidian notes.
Tab File Path
a year ago by John Burnett
Horizontal Blocks
a year 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.
Chatty
a year ago by Sadnan Saquif
A simple plugin for Obsidian that allows you to listen to your notes using text-to-speech. Uses the browser's built-in speech synthesis capabilities and your default system voices.
GH Links Shortener
a year ago by David Barnett
Obsidian plugin to set shortened link text for pasted GitHub URLs
Table Checkbox Renderer
10 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
9 months ago by Spiderpig86
Notion-style Markdown autocompletion for Obsidian.
Disable Tabs
8 months ago by David V. Kimball
Disables having more than one tab open at a time Obsidian.
Mermaid Icons
7 months ago by toshs
Obsidian plugin enabling the use of icons in Mermaid diagrams.
Archivist Importer
6 months ago by Archivist AI
An Obsidian Plugin to Imort Your Vaults into Archivist
Fix Tab Size
4 months ago by mnaoumov
Obsidian plugin that fixes tab size according to the settings.
Path in tab title
4 months ago by d9k
Markdown Cleaner
4 months ago by gao-qian-long
Obsidian格式化markdown插件
Fountain Editor
4 months ago by Chuang Caleb
Obsidian plugin for Fountain screenplay syntax formatting.
draw.io
3 months ago by somesanity
A plugin for Obsidian that integrates the draw.io editor into Obsidian.
Lean Terminal
3 months ago by Sascha D. Kasper
Embedded terminal for Obsidian powered by xterm.js and node-pty
Excalidraw Extras
3 months ago by zsviczian
Companion Obsidian.md plugin hosting extra add-on optional features for the main Excalidraw-Obsidian plugin
Wechat Converter
3 months ago by davidlam-oss
Obsidian 公众号排版(支持自定义 CSS和公众号贴图)、飞书云同步与多平台(小红书、知乎等)发布插件。Markdown 转微信文章 / Feishu docs / 知乎、小红书、今日头条等草稿,支持数学公式、本地图片、GIF 和 Mermaid。
Markdown Tabs
2 months ago by xhuajin
Create and render a Tabs component in your notes.
Bases Paginator
2 months ago by sean2077
A plugin for Obsidian that adds a paginated table view with column filtering capabilities to Obsidian Bases.
Square
2 months ago by Jiao Yingxing
Installable runtime artifacts for Square, a lightweight Obsidian habit tracker.
Budget Planner
2 months ago by kalinichenko88
A minimalist budget planning tool for Obsidian. Create, track, and manage budgets using markdown code blocks directly in your notes.
Tab Switcher
2 months ago by Vinzent
Tab Switcher - Obsidian Plugin
Cursor-Smith
2 months ago by sadsnake1
Cursor Customization Engine for Obsidian
Side-Notes
2 months ago by Fried Fishsticks
Tufte-style sidenotes for Obsidian
Property Panels
2 months ago by Eva Chen
Display and edit Obsidian frontmatter properties in configurable panels that stay inside the note's scrollable content.
Power Editor
a month ago by Power Plugins
Format any note from a toolbar, selection bubble, or slash menu: WYSIWYG editing, block drag handles, image resizing, dictation, and AI edits, all staying plain Markdown.
Mermaid Zoom
a month ago by xiaozhuang0433
A plugin that adds zoom functionality to Mermaid charts in Obsidian.
Pinned Tabs
a month ago by NameIsKyro
Chrome-style compact pinned tabs for Obsidian with custom icons, smooth movement, and accidental-close protection.`
Mobile Sidebar Notes
a month ago by ckep1
Open notes & new tabs in the sidebar on the Obsidian mobile app.
Visual Card Writer
a month ago by David Hurt
A visual, card-based Markdown writing interface for Obsidian.
PDF to Markdown Native
a month ago by Andres Herle Lang
rumdl
a month ago by rvben
Obsidian plugin for markdown linting with rumdl
Sectionals
21 days ago by Aaron Bell
Edit Markdown by structure
ICOR for Life - Interface
16 days ago by Paperless Movement S.L.
The vault's chrome in one place: hide the ribbon and Obsidian's own controls, and give any folder a colour, an icon and a label. Writes no CSS; the INKLINE theme draws it. Part of the ICOR for Life suite.
Simple Editorial
16 days ago by Beppe
A minimal editorial markup plugin for writers using Obsidian.
Table Resize
8 days ago by lishuai1993
调整obsidian中表格宽度的插件
Format Convert Copy
7 days ago by shallow1992
Obsidian plugin to convert Markdown text or active notes into Slack, Discord, and WhatsApp formats, or copy as raw Markdown with one tap.