Mermaid Link Navigator

by w-java123
5
4
3
2
1
Score: 51/100

Description

The Mermaid Link Navigator plugin renders Mermaid flowcharts with clickable wikilink nodes, so a Ctrl or Command click on a node opens the linked note, heading or alias target. It also adds a visual editor that can add, edit and delete nodes, change shapes, build decision branches and write every change back into the source block. The view supports zoom, pan and saved viewport state, can mark and recenter the current node, exports full diagrams as SVG or high resolution PNG and shows missing note targets with dashed borders while optionally creating them in a chosen folder. It can turn a note outline into a flowchart, updates links when notes are renamed, works offline with built in Mermaid 11 and plain clicks do not navigate.

Reviews

No reviews yet.

Stats

0
stars
78
downloads
0
forks
3
days
0
days
2
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
135
commits

Latest Version

2 days ago

Changelog

fix: 切换笔记时清除restoredNotes,跳转回来后重新恢复滚动位置

README file from

Github

Mermaid Link Navigator is an Obsidian plugin that renders Mermaid flowcharts with clickable [[wikilink]] nodes. Ctrl/⌘+click a node to jump to its linked note. It also provides right-click visual editing of the flowchart (add / edit / delete nodes, change shapes, decision nodes with yes/no branches, parent-child links), canvas-style zoom and pan, a current-node locator, SVG/PNG export, and automatic link synchronization when notes are renamed.

Features: node-embedded [[note links]] · Ctrl/⌘+click navigation (plain click does not jump) · right-click visual editing that writes back to the note source · decision nodes (diamond) with yes-left / no-right layout · node shapes: rectangle / rounded / circle / diamond / hexagon / cylinder / double-border · canvas zoom & pan with auto-saved view state · select & locate current executing node · export full diagram as SVG / high-res PNG · dashed border when the target note does not exist (auto-create with configurable folder) · auto-sync links on note rename · outline-to-flowchart view · built-in Mermaid 11 (works offline) · desktop & mobile support.

Install: search Mermaid Link Navigator in Obsidian → Settings → Third-party plugins → Browse. Manual install: put main.js, manifest.json, styles.css from the latest release into .obsidian/plugins/mermaid-link-nav/.


在 Mermaid 流程图的节点里直接写 [[笔记链接]],阅读模式下 Ctrl/⌘+单击节点即可跳转到对应笔记。支持右键可视化编辑流程图、画布式缩放平移、当前正在执行节点的选择与一键定位、导出 SVG / 高清 PNG。

功能

  • 节点嵌入 [[笔记链接]]:支持 [[笔记]][[文件夹/笔记]][[笔记#标题]][[笔记|显示别名]][[#本笔记标题]]
  • Ctrl/⌘+单击节点跳转(普通左键单击不跳转):Alt+单击分屏、中键新标签页
  • 右键可视化编辑(自动写回笔记源码):
    • 添加节点(可指定上下游节点,笔记链接默认为节点名称)
    • 编辑节点名称和跳转链接
    • 删除节点(红色标注,入边自动指向出边)
    • 改变形状:矩形 / 圆角矩形 / 圆形 / 菱形 / 六边形 / 圆柱形 / 双边框
    • 选择父节点 / 选择子节点(点击图上任意已存在节点建立连线)
    • 设置为判断节点(菱形,是/否分支,是左否右布局)
    • 更换判断节点的【是】/【否】子节点
    • 断开父节点 / 断开子节点(删除普通连线,保留判断节点的【是/否】分支连线)
    • 更换位置(与另一节点交换显示内容)
  • 选择当前正在执行的节点:点击图上方红色「选择当前正在执行的节点」按钮,屏幕中间提示后点击图上任一节点即选中;选中后出现绿色「🎯 定位当前正在执行的节点」按钮和灰色「取消选中当前正在执行的节点」按钮
  • 一键定位当前节点:点击绿色「🎯 定位当前正在执行的节点」按钮,自动平移缩放并滚动页面到该节点位置
  • 画布式缩放与平移
    • 鼠标滚轮 / Ctrl+滚轮 / 触摸板双指捏合:以指针位置为中心缩放(上滚放大、下滚缩小)
    • 触摸板双指滑动 / 鼠标左键拖动 / 触屏单指拖动:平移
    • 缩放平移状态与滚动位置自动保存,重启后直接恢复到上次位置(不闪)
  • 导出整张完整图
    • 💾 导出 SVG:矢量格式,无限放大不失真
    • 🖼️ 导出 PNG:高清位图,纯白背景,默认存入「笔记名的PNG图片」文件夹
  • 目标笔记不存在时,节点边框显示为虚线,点击按 Obsidian 规则新建笔记(可指定默认文件夹)
  • 笔记重命名自动同步:重命名笔记后,mermaid 中对应的跳转链接自动更新
  • 笔记大纲一键变流程图:命令面板执行「Mermaid Link Navigator:打开当前笔记的流程图视图」,自动读取标题与列表层级生成 flowchart
  • 正常渲染 Mermaid 流程图 / 时序图等全部 Mermaid 图形(内置 Mermaid 11,不依赖网络)
  • 主题自动跟随 Obsidian 明暗模式,可在设置中固定
  • 兼容桌面端与移动端(手机端支持双指缩放、单指拖动平移)

安装

社区插件(推荐)

在 Obsidian「设置 → 第三方插件 → 浏览」中搜索 Mermaid Link Navigator,点击安装。

手动安装

  1. 下载最新 release 的 main.jsmanifest.jsonstyles.css
  2. 放到你仓库的 .obsidian/plugins/mermaid-link-nav/ 目录下
  3. 在 Obsidian「设置 → 第三方插件」中启用 Mermaid Link Navigator

想自行构建:在本目录执行 npm install,再执行 npm run build

用法

推荐写法(节点标签用双引号包起来)

因为链接里含有 #| 等符号,建议始终用双引号包裹标签:

```mermaid
flowchart LR
  A["[[首页|🏠 首页]]"] --> B(["[[项目总览]]"])
  B --> C{{"[[架构设计#数据库模块|数据库设计]]"}}
  B --> D["[[部署手册]]"]
```

渲染后:

  • A 显示「🏠 首页」,Ctrl+单击打开《首页》
  • B 显示「项目总览」,Ctrl+单击打开《项目总览》
  • C 显示「数据库设计」,Ctrl+单击跳转到《架构设计》的「数据库模块」标题
  • D 显示「部署手册」

支持的节点形状

矩形 []、圆角 ()、圆形 (())、菱形 {}、六边形 {{}}、圆柱 [()]、子程序 [[]]、旗帜 >]、平行四边形 [/ /] 等全部 flowchart 节点形状均可。

右键编辑

在流程图节点上右键,即可看到所有编辑选项。所有编辑操作都会自动写回笔记中的 mermaid 源码。空白处右键可添加新节点。

判断节点

右键节点 →「设置为判断节点」,依次点击选择【是】和【否】的子节点。判断节点显示为菱形,【是】分支自动排在左侧、【否】分支在右侧。后续可右键 →「更换【是】节点」/「更换【否】节点」单独修改。

选择并定位当前正在执行的节点

点击图上方红色「选择当前正在执行的节点」按钮,屏幕中间出现提示后点击图上任意节点即选中(按 Esc 取消)。选中后:

  • 节点高亮显示
  • 图上方出现绿色「🎯 定位当前正在执行的节点」按钮,点击后自动平移缩放并滚动页面到该节点
  • 图上方出现灰色「取消选中当前正在执行的节点」按钮,点击取消选中

当前节点的选择跨设备同步(通过坚果云等同步插件同步状态文件),手机端选好节点后电脑端也能定位到同一节点。

导出图片

点击图上方「💾导出SVG」或「🖼️导出PNG」按钮,导出整张完整流程图(非当前缩放视口)。默认存入以笔记名命名的文件夹(如「找工作流程的PNG图片」),可在设置中改为固定文件夹。

设置项

设置 说明
接管原生 mermaid 代码块 普通 mermaid 块是否由本插件渲染,改后需重新加载插件
额外生效的代码块语言 逗号分隔的别名,如 mmd
图表主题 自动 / 浅色 / 深色 / forest / neutral
默认打开方式 当前标签页 / 新标签页 / 左右分屏(修饰键优先级更高)
新笔记默认文件夹 节点链接不存在时,自动创建笔记的目标文件夹(不存在则自动创建)
PNG 导出文件夹 留空时自动用「笔记名的PNG图片」文件夹;可选择固定文件夹
SVG 导出文件夹 留空时自动用「笔记名的SVG图片」文件夹;可选择固定文件夹
悬停提示 鼠标悬停节点时显示目标笔记
悬停高亮 高亮可点击节点

命令面板中还提供「重新渲染当前笔记中的 Mermaid 链接图」命令,切换主题后可手动刷新。

注意事项

  • 链接写在节点上才会绑定点击;写在连线标签(-->|文字|)上只会显示别名,不可点击。
  • 一个节点里写多个链接时,第一个链接作为跳转目标,其余仅替换为显示文本。
  • Ctrl/⌘+单击才会跳转,普通左键单击不跳转(避免误触)。

目录结构

mermaid-link-nav/
├── manifest.json        插件清单
├── main.js              构建产物(直接安装用)
├── styles.css           样式
├── src/
│   ├── main.ts          插件主逻辑:代码块渲染、跳转、右键编辑、设置页
│   ├── diagram-edit.ts  mermaid 源码编辑:添加/编辑/删除节点、改变形状、判断节点等
│   ├── parser.ts        mermaid 源码解析:节点 wikilink 与连线关系提取
│   ├── pan-zoom.ts      画布式平移缩放控制器
│   ├── focus-dom.ts     viewBox 缩放动画
│   ├── outline.ts       笔记大纲树解析 + 大纲转 mermaid flowchart
│   ├── outline-view.ts  「笔记流程图」ItemView
│   ├── edit-modal.ts    节点编辑弹窗
│   └── node-id.ts       从渲染后 DOM 还原源码节点 id
├── esbuild.config.mjs   构建脚本
├── tsconfig.json
└── package.json

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Add links to current note
6 years ago by MrJackphil
This plugin adds a command which allows to add a link to the current note at the bottom of selected notes
Advanced Random Note
3 years ago by Karsten Finderup Pedersen
Create commands from custom queries to open random notes
Advanced Tables
6 years ago by Tony Grosinger
Improved table navigation, formatting, and manipulation in Obsidian.md
Advanced URI
5 years ago by Vinzent
Advanced modes for Obsidian URI
Anchor Link Display Text
2 years ago by Robert C Arsenault
An Obsidian plugin that makes anchor links look nicer by automatically populating display text.
Another Quick Switcher
5 years ago by tadashi-aikawa
This is an Obsidian plugin which is another choice of Quick switcher.
Another Sticky Headings
2 years ago by Zhou Hua
Antigravity
6 days ago by ke yongcheng
Autonomous vault management, knowledge organization, and agentic intelligence powered by Google Antigravity (agy).
Arrows
3 years ago by artisticat
Draw arrows across different parts of your notes, similar to on paper
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.
Automatic Linker
2 years ago by Kodai Nakamura
Automatically reveal active file
6 years ago by Matt Sessions
Obsidian plugin to reveal the active file automatically when you open a file
Backlink Full Path
a year ago by mnaoumov
Obsidian plugin that shows the backlink's full path in the backlinks panel.
Better Link Clicker
8 months ago by Eniverz
An Obsidian plugin that modifies the default link click event.
Better Mind Map
a year ago by Utkarsh Raj
Obsidian plugin to for mind maps, vizualize current note as mind map.
Better Search Views
3 years ago by Ivan Lednev
Outliner-like breadcrumb trees for search, backlinks and embedded queries
BlazeJump
2 years ago by henryco
Plugin for Obsidian that makes text navigation blazingly fast.
Bookmarks Caller
2 years ago by namikaze-40p
This is an Obsidian plugin which can easily open bookmarks.
BookNav
2 years ago by jemberton
A plugin for ObsidianMD that enables book style navigation links in a note.
Canvas Link to Group
a year ago by TGRRRR
Plugin for Obsidian Canvas enabling direct links to specific groups within canvas files for improved navigation
Canvas minimap
3 years ago by ifree
Obsidian canvas minimap
Card View Switcher
4 years ago by qawatake
An Obsidian plugin to provide a quick switcher with card view
Click Hint
2 years ago by kbwo
Core Search Assistant
5 years ago by qawatake
An Obsidian plugin to enhance built-in search: keyboard interface, card preview, bigger preview
Crafty
3 years ago by liolle
Add tooltip to your obsidian canvas's nodes and navigate between nodes
Current File Tags
2 years ago by Trung Tran
Cursor Jump
2 years ago by Sangwon Jung
Cursor Position History
2 years ago by Florian Gubler
A Plugin to remember (and make accessible) the cursor history in Obsidian. Both within a file and across files.
Cursor Position on Title Enter
2 years ago by Por Chainarong Tangsurakit
Obsidian Plugin: Set the cursor position after pressing Enter on the note title.
Custom Slides
a year ago by David V. Kimball
Customize Obsidian's Slides core plugin's navigation, styles, and behavior.
Cycle In Sidebar
4 years ago by Houcheng
Cycle through tabs of left/ right sidebar panel
Daily Note Navbar
3 years ago by Karsten Finderup Pedersen
Adds a daily note navbar to quickly navigate between sequential daily notes in Obsidian.
Daily Note Outline
4 years ago by iiz
Add a custom view which shows outline of multiple daily notes with headings, links, tags and list items
Daily Notes Tweaks
10 months ago by René Coignard
Open a random daily note and automatically switch past daily notes to reading mode.
Date Range Expander
a year ago by Mil
Obsidian plugin - Date Range Expander
Drag To Scroll
a year ago by Constantine Sazonov
Adds drag-to-scroll functionality to Obsidian. Hold mouse button and drag - now you can scroll like on touch device!
draw.io
3 months ago by somesanity
A plugin for Obsidian that integrates the draw.io editor into Obsidian.
Dynamic Outline
2 years ago by theopavlove
Adds a customizable GitHub-like floating table of contents to Obsidian.
EasyLink
a year ago by isitwho
Select text in your obsidian editor to find the most similar content from other notes and easily create links.
Excalidraw Extras
3 months ago by zsviczian
Companion Obsidian.md plugin hosting extra add-on optional features for the main Excalidraw-Obsidian plugin
Excalink
23 days ago by Aditya Kumar
Excalink is an Obsidian plugin that enables IntelliSense-style autocompletion for groups and named frames inside .excalidraw.md files. When you type [[filename#, it suggests all available frame names, allowing fast, precise linking to parts of your drawings.
Export Graph View
2 years ago by Sean McGhee
Plugin to export your vault's graph view.
Extended Graph
a year ago by Kapirklaa
Community plugin to add features to the graph view.
FastForwardLink
2 years ago by Idan Liberman
FastForwardLink Obsidian.md Plugin
Floating Headings
7 months ago by k0src
Displays a floating, collapsible outline of a note's headings on the right side of the editor. Expands on hover, click to navigate.
Floating Search
3 years ago by Boninall
A plugin for searching text by using Obsidian default search view.
Folder Filelist
a year ago by Bill Anderson
Obsidian plugin for simple folder listing
Folder Focus Mode
4 years ago by grochowski
Focus file explorer on chosen folder and its files and subdirectories, while hiding all the other elements.
Folder overview
2 years ago by Lost Paul
Provides a dynamic overview of your vault or folders in the format of a code block.
Folder Tabulation
2 years ago by SpeedaRJ
An open source plugin for obsidian that let's you treverse local folder structure via keybindings and commands.
FolderFile Splitter
2 years ago by Xu Quan
Galaxy View
2 months ago by Rick
Go To Heading
3 years ago by join
Quickly navigate between your document's headings in Obsidian
Go to Line
5 years ago by phibr0
Handwriting
a month ago by Alan Liu
Pen ink on ordinary Markdown notes in Obsidian.
Headings in Explorer
2 years ago by Patrick Chiang
This Obsidian plugin makes headings first class concepts in the file explorer and consolidates navigation to a single panel.
Highlight active folder section
2 years ago by Lukas Collier
Gives the folder section with the active note a customizable background color and more.
HOME key
a year ago by shichishima
Obsidian Plugin to move cursor to beginning of text, considering Markdown heading characters.
ICOR for Life - Interface
19 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.
Inline Local Graph
8 months ago by TKOxff
Inline Local Graph of Obsidian
Insert Heading Link
5 years ago by Signynt
Add a Link to a Heading.
Insta TOC
2 years ago by Nick C.
Generate, update, and maintain a table of contents for your notes while typing in real time.
Journey
6 years ago by Alexis Rondeau
Discover the story between your notes in Obsidian
Karpathy LLM Wiki
2 months ago by Greener-Dalii
Karpathy's LLM Wiki implementation plugin for Obsidian - turns notes and PDFs into a linked, LLM-powered knowledge base with entity pages, concept pages, graph-powered Q&A, and local-first privacy.
Last Edit Location
9 months ago by Kyoungdeuk
When opening a note, put the cursor at the last edit location.
Lemons Search
2 years ago by Moritz Jung
An Obsidian plugin that offers a fast fuzzy finder based quick switcher with preview.
Link Navigation
2 years ago by xRyul
Navigate between incoming links (inlinks), outgoing links (outlinks) N levels deep. Links from Canvas are also supported.
Link Range
3 years ago by Ryan Mellmer
Add ranged link support to Obsidian
Linked Graph Navigator
20 days ago by woonyong-kr
Follow links from the current Obsidian note in written order, using a sidebar outline or graph.
Links
3 years ago by MiiKey
manipulate & manage obisidian links
List Outline Helper
2 years ago by triangular-sneaky
Obsidian plugin to select the current outline
macOS Keyboard Navigation
6 years ago by ryanjamurphy
Mark Open Files
a year ago by Michael Schrauzer
Adds a marker to all the File Explorer items that are currently open in the Obsidian workspace.
Markdown Tabs
2 months ago by xhuajin
Create and render a Tabs component in your notes.
Markmind
5 years ago by Mark
A mind map, outline for obsidian,It support mobile and desktop
Mehrmaid
2 years ago by huterguier
Rendering Obsidian Markdown inside Mermaid diagrams.
Mention Autocomplete
2 months ago by Darren Zheng
Type `@` to instantly search and link any note in your vault — with full-text search, rendered preview, and smart sentence extraction.
Mermaid Icons
7 months ago by toshs
Obsidian plugin enabling the use of icons in Mermaid diagrams.
Mermaid Popup
2 years ago by ChenPengyuan
Mermaid Themes
3 years ago by jvsteiner
mermaid themes for obsidian
Mermaid Tools
4 years ago by dartungar
Tools for improved Mermaid.js experience in Obsidian.md
Mermaid Zoom
2 months ago by xiaozhuang0433
A plugin that adds zoom functionality to Mermaid charts in Obsidian.
Metafolders
3 years ago by Makary Sharoyan
An Obsidian plugin for multidimensional note navigation
Mouse Navigation
2 years ago by HoBeomJeon
Multiple Notes Outline
3 years ago by iiz
Nav Link Header
2 years ago by ahts4962
Display navigation links at the top of the notes in Obsidian
Neighbouring Files
3 years ago by Fabian Untermoser
Obsidian Plugin to navigate to the next and previous file in the current directory
Next Link
3 years ago by Juan Luque
Next TOC
8 months ago by RavenHogWarts
Floating TOC panel
Nextcloud Link Fixer
2 years ago by KaelLarkin
No Dupe Leaves
4 years ago by Simon Cambier
Automatically switch the focus to open notes instead of reopening them
Note aliases
4 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
Note Minimap
a year ago by Yair Segel
Add a minimap to your Obsidian notes.
Note Toolbar
2 months ago by chrisgurney
Flexible, context-aware toolbars for your notes in Obsidian.
Note Types
a month ago by jsmorabito
Notebook Navigator
2 months ago by Johan Sanneblad
A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.
Notemd
a year ago by Jacob
A Easy way to create your own Knowledge-base! Notemd enhances your Obsidian workflow by integrating with various Large Language Models (LLMs) to process your notes, automatically generate wiki-links for key concepts, create corresponding concept notes, perform web research, and more.
obsidian floating toc
4 years ago by curtgrimes modified by Cuman
Open Plugin Settings
3 years ago by Mara-Li
Create a command that open the settings tabs of a registered plugin (because I was bored to open the parameters).
Open Related Url
4 years ago by Dan Pickett
Open Tab Settings
a year ago by jesse-r-s-hines
Obsidian plugin that adds options to customize how tabs are opened, including open in new tab by default, preventing duplicate tabs, and more
Outline Converter
2 years ago by masaki39
Convert outline to continuous text.
Outline to task list
2 years ago by alexandrerbb
A simple Obsidian plugin to convert a note's outline to a task list
Outliner
5 years ago by Viacheslav Slinko
Work with your lists like in Workflowy or RoamResearch
Page Heading From Links
6 years ago by Mark Beattie
Obsidian plugin to populate page headings
Pane Relief
6 years ago by PJ Eby
Obsidian plugin for per-pane history, pane movement/navigation hotkeys, and more
Previous Daily Note
2 years ago by Marcos Talau
Plugin for Obsidian that opens the previous daily note
Quick Explorer
5 years ago by PJ Eby
Perform file explorer operations (and see your current file path) from the Obsidian.md title bar
Quick Nav
a year ago by exoticknight
Enhance your editing experience by unleashing the hidden power of shortcuts.
Quick Preview
3 years ago by Ryota Ushio
An Obsidian plugin to quickly preview a suggestion before selecting it in link suggestions & quick switcher.
Quick snippets and navigation
4 years ago by @aciq
Quick snippets and navigation for Obsidian
Quick Switcher++
4 months ago by darlal
Enhanced Quick Switcher plugin for Obsidian.md
Quickly
3 years ago by Sparsh Yadav
Quick capture to obsidian note
Quiet Outline
4 years ago by the_tree
Improving experience of outline in Obsidian
Recent Tab Switcher
2 years ago by Samuel Ang
Recent Tab Switcher Plugin for Obsidian.
Remember Scrollposition
9 months ago by s-blu
A plugin that saves the scroll position for each note to return you to where you left off
Reveal Active File Button
5 years ago by Clare Macrae
Obsidian plugin to add a button to the top of the Obsidian File Explorer, to reveal the active file.
Reveal Folded
a year ago by d7sd6u
Adds a command that reveals current file while collapsing every other tree item
Scroll Offset
4 years ago by Lijyze
Scroll Offset for Obsidian
Scrolls To Nav Top
a year ago by mario
Simply scrolls to nav top
Search Everywhere
5 years ago by Mom0
Obsidian Search Everywhere Plugin
SideNote
10 months ago by mofukuru
Obsidian plugin: Add comment on the part of sentence and refer in comment view.
Smooth Navigator
a year ago by Michael Schrauzer
Smoothly cycle through open files and splits in Obsidian via the keyboard.
Tab File Path
a year ago by John Burnett
Tab Navigator
2 years ago by o02c
obsidian-tab-switcher
Tab Rotator
3 years ago by Steven Jin
Obsidian Rotate opened tabs with a specified time interval
Tab Selector
3 years ago by namikaze-40p
This is an Obsidian plugin which can quickly switch tabs in various ways.
Tab Switcher
2 months ago by Vinzent
Tab Switcher - Obsidian Plugin
Tabsdown
2 months ago by grafanakibana
Create accessible, theme-native tabbed blocks for Markdown-renderable content in Obsidian.
Tabula Rasa
a month ago by Jeremiah Beatham
Tag Index
a year ago by wenlzhang
An Obsidian plugin that creates a curated list of important tags to serve as meaningful entry points to your knowledge base.
Title As Link Text
2 years ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Tree Diagram
a year ago by limpido
An Obsidian plugin that converts tab-indented text to a tree diagram.
Tree Search
2 years ago by catacgc
URL Display
3 years ago by Stephanie Lin
Extract and display external URLs of the note in Obsidian.
Vault Name
2 years ago by @gapmiss
An Obsidian.md plugin for customizing and displaying the vault name (title) in the side navigation file explorer, similar to pre 1.6.0 versions of Obsidian.
Vault Shelf
7 days ago by Lukas Proprentner
Your Obsidian vault as a browsable library: shelves of books built from titles, dates, people, tags, folders or any note property. Customizable to make it your own.
Vertical Tabs
3 months ago by oxdc
An Obsidian plugin that displays open tabs vertically, allowing users to group and organize tabs for a better navigation experience.
VirtFolder
2 years ago by mr.grogrig
Creating a hierarchical structure like Luhmann's Zettelkasten
Visual Card Writer
a month ago by David Hurt
A visual, card-based Markdown writing interface for Obsidian.
Wechat Converter
3 months ago by davidlam-oss
Obsidian 公众号排版(支持自定义 CSS和公众号贴图)、飞书云同步与多平台(小红书、知乎等)发布插件。Markdown 转微信文章 / Feishu docs / 知乎、小红书、今日头条等草稿,支持数学公式、本地图片、GIF 和 Mermaid。
Weekday Commands
16 days ago by Wren
Wikilinks to MDLinks
6 years ago by Agatha Uy
An Obsidian md plugin which allows for the conversion of individually selected wikilinks to markdown links, and vice versa.
Zettelkasten Outliner
3 years ago by Tyler Suzuki Nelson