Smart Export

by Iván Sotillo
5
4
3
2
1
Score: 36/100

Description

Category: Productivity Tools

The Smart Export plugin follows links from a chosen root note, builds a note tree and turns that structure into exports that are easier to read, share or feed into language models. It gives separate depth controls for full content and title only context, so large vaults can be trimmed without losing the overall map. Users can traverse outgoing links, incoming links or both, then filter results with folder, tag and property based exclusion rules. The export can be copied to the clipboard or written as a new note inside the vault. It also supports XML, print focused Markdown and template based Markdown outputs, including custom templates with placeholders.

Reviews

No reviews yet.

Stats

stars
3,141
downloads
0
forks
51
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

Smart Export

Version Downloads Buy Me a Coffee

Smart Export turns one Obsidian note into a clean exportable context bundle by following wikilinks to a configurable depth. It is built for people who want readable note packets, print-friendly exports, or structured context for LLM workflows without manually stitching notes together.

Landing page: smart-export.vercel.app

Why Smart Export

  • Follow outgoing links, backlinks, or both from a root note.
  • Export as XML, print-friendly Markdown, or Markdown templates such as LLM-ready.
  • Exclude folders, tags, and notes based on frontmatter properties (property rules) from traversal.
  • Optionally redact marked private sections from exported note content.
  • Copy exports to the clipboard or create a new note directly in your vault.
  • Rewrite links between exported notes, and preserve referenced exported headings when possible, so navigation still works inside the generated Markdown note.

Installation

  1. Open Settings → Community plugins.
  2. Turn off Restricted mode if needed.
  3. Click Browse, search for Smart Export, then install and enable it.

BRAT (optional beta testing only)

Use BRAT (Beta Reviewers Auto-update Tool) only if you want to test prerelease builds before they reach the Community Plugins catalog.

  1. In Obsidian, open Settings → Community plugins → Browse and install BRAT.
  2. Open BRAT settings and click Add a beta plugin.
  3. Paste: https://github.com/LittleHaku/obsidian-smart-export
  4. Select the latest prerelease you want to test.

Quick Start

  1. Open command palette (Cmd/Ctrl+P) and run Smart Export: Open export (or click the ribbon icon).
  2. Select a root note.
  3. Set depth values (recommended start: content 2, title 4).
  4. Choose output format.
  5. Click Export to clipboard or Export to new note.

Export to new note prompts for a vault-relative folder and note name, then creates the Markdown note using your default folder/open preferences from settings.

Export Formats

  • XML for structured machine-readable exports.
  • Markdown templates for prompt and context workflows, including the built-in LLM-ready template and custom templates loaded from your vault.
  • Print-friendly Markdown for readable note bundles, PDF export, linked tables of contents, and normalized nested headings.

Core Features

  • Smart note discovery using breadth-first traversal.
  • Link direction modes: outgoing, incoming, or both.
  • Dual depth controls:
    • content depth for full note content
    • title depth for title-only context
  • Folder exclusion with comma-separated wildcard or path patterns.
  • Tag and property exclusion rules for traversal.
  • Optional content redaction for private sections marked with a delimiter such as :::private text:::.
  • Linked table of contents, numbered headings, section dividers, and page breaks for print-friendly Markdown.
  • Built-in and custom Markdown templates with placeholder support.
  • Token estimate display before export.
  • One-time in-app "What's new in Smart Export" modal after plugin updates.

Settings

Settings location: Obsidian → Settings → Smart Export

Export defaults

  • Default content depth: 1-20
  • Default title depth: 1-20
  • Default output: XML, print-friendly Markdown, LLM-ready, or your custom templates
  • Default export target: clipboard or new note
  • Default link direction
  • Default export note folder: vault-relative folder for new export notes (leave empty to use the source note folder)

Traversal exclusions

  • Ignored folders: comma-separated folders/patterns (for example templates, assets*, /archive) excluded from traversal/export. Leading / anchors to vault root.
  • Hide notes with tags: comma-separated tag patterns (for example archive*, #draft, projects/*/old) excluded from traversal/export.
  • Hide notes with property rules: comma-separated rules using key or key=value (for example status=done, published=true, archived) excluded from traversal/export.

Content redaction

  • Redact marked sections: replaces private sections during export without editing source notes.
  • Redaction delimiter: exact marker used at both ends of private text. Default: :::, so :::private text::: becomes REDACTED.
  • Marked section replacement: text inserted in the export for each marked section. Default: REDACTED.
  • Apply regular expression redaction rules: enables pattern-based export cleanup separately from marked-section redaction.
  • Regular expression redaction rules: optional regular expression rules, one per line, for removing patterned content such as footnotes, image embeds, URLs, comments, or private YAML lines. Example rules are prefilled but inactive until enabled.
  • Regular expression replacement: text inserted for regular expression matches. Leave blank to remove matches.
  • Test content redaction: live sample input and redacted result preview for checking delimiter and regular expression redaction before exporting.

Markdown templates

  • Markdown template folder: vault-relative folder for custom Markdown templates, with folder autocomplete

Print-friendly Markdown

  • Include table of contents: adds a linked table of contents to print-friendly exports
  • Number headings: prefixes exported note headings with section numbers such as 1. and 1.1
  • Insert section dividers: adds divider lines between note sections in print-friendly exports
  • Insert page breaks: starts each note section after the first on a new page and replaces section dividers
  • Normalize content headings: shifts headings inside included notes below the exported note title heading

By default, included note content headings are normalized below the exported note title heading so nested note sections remain visually subordinate in print-friendly output. Turn off Normalize content headings to preserve source heading levels exactly.

Export modal behavior

  • Auto-select current note
  • Close modal after export
  • Open created export note
  • Show per-note token estimates

Exclusion details (folders/tags/properties): Exclusion rules

Using Markdown Templates

For Markdown template exports, Smart Export can load a custom template from your vault:

  1. Choose a template folder in Settings → Smart Export → Markdown template folder.
  2. Create one or more .md notes in that folder.
  3. Add placeholders from template docs to those notes.

Default folder: smart-templates (you can change it).

Template selection:

  • In the export modal, use the Output dropdown.
  • It includes XML, print-friendly Markdown, and Markdown template options.
  • Markdown template options include built-in templates and templates found in your configured folder.
  • Built-in templates are always available as fallback.

Default recommendation:

  • In settings, the built-in option shown is LLM-ready.
  • This template is the recommended baseline because it includes structured guidance text for prompt/context ingestion.
  • Additional templates like compact are provided as examples for users who want starting points.

Resolution order (only when no explicit template is selected / templateId is omitted):

  • <template-folder>/llm-markdown.md
  • first .md file in <template-folder> (alphabetical path order)
  • built-in default template if no custom template is found via the above rules

Placeholder reference: templates/README.md

{{metadata_yaml}} includes the full YAML block with --- delimiters and keys like export_timestamp, starting_note, total_notes_exported, and missing_notes_count.

Keyboard Shortcuts

  • Primary command: Smart Export: Open export
  • Quick command: Smart Export: Quick export current note (uses default settings and follows your configured default export target)
  • Assign your own shortcut in Settings → Hotkeys.

Documentation

Example Output

XML (excerpt)

<obsidian_export>
  <metadata>
    <starting_note>Machine Learning</starting_note>
    <total_notes_exported>5</total_notes_exported>
  </metadata>
</obsidian_export>

LLM Markdown (excerpt)

# Smart Export Vault

- Starting Note: Machine Learning
- Total Notes: 5

Troubleshooting

Empty export or missing notes

  • Ensure the root note exists.
  • Ensure links resolve to real notes.
  • Check that excluded folders are not filtering expected notes.

Export too large

  • Use Export to new note to avoid clipboard limits for large exports.
  • Set Default export target to New note if your quick-export hotkey should create files instead of using the clipboard.
  • Lower content/title depth.
  • Switch to Print-friendly Markdown.
  • Start from a more specific root note.

Contributing

See CONTRIBUTING.md.

Quick setup:

git clone https://github.com/LittleHaku/obsidian-smart-export.git
cd obsidian-smart-export
pnpm install
pnpm run dev

Optional WSL/Linux workflow:

  • Keep the repo on the Linux filesystem for faster pnpm/TypeScript/esbuild performance.
  • Create a local-only .env.local from .env.example.
  • Set OBSIDIAN_PLUGIN_DIR to your Windows or vault plugin folder, for example .../.obsidian/plugins/smart-export.
  • With that env var set, pnpm dev and pnpm build keep their normal OSS behavior and also mirror main.js, manifest.json, and styles.css into your local Obsidian plugin directory.
  • .env.local is git-ignored, so contributors can use different vault paths without changing the repo.

Benchmark:

pnpm benchmark

Support

Star History Chart

License

MIT License. See LICENSE.

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
Obsidian Dynamic Embed
4 years ago by Ivaylo Dimitrov Dabravin
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.
Note Auto Creator
4 years ago by Simon T. Clement
An Obsidian plugin for automatically creating notes when linking to non-existing notes
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.
More Markdown file suffix (.mdx/.svx)
4 years ago by swissmation.com
Use markdown files of additional file suffix as .mdx, .svx in Obsidian
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
3 years ago by kasahala
Render a directory Structure Diagram from a markdown lists in codeblock.
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
Markdown to Jira Converter
3 years ago by muckmuck
An obsidian.md plugin, which provides a markdown to jira markup converter
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)
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)
Workona To Obsidian
3 years ago by Holmes555
Plug-in for Obsidian.md which will import Workona json file
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.
Meld Build
3 years ago by meld-cp
Write and execute (sandboxed) JavaScript to render templates, query DataView and create dynamic notes.
Links
3 years ago by MiiKey
manipulate & manage obisidian links
Auto Template Trigger
3 years ago by Numeroflip
An obsidian.md plugin, to automatically trigger a template on new file creation
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
Flashcards LLM
3 years ago by Marco Pampaloni
Use Large Language Models (such as ChatGPT) to automatically generate flashcards from obsidian notes
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
BMO Chatbot
3 years ago by Longy2k
Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) from Ollama, LM Studio, Anthropic, Google Gemini, Mistral AI, OpenAI, and more for 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 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 Sync Scroll
3 years ago by ProjectXero
Synchronize scroll in linked Markdown views.
Ruled template
3 years ago by YPetremann
An obsidian plugin that check rules to select which template to use.
Markdown to Slack Message
3 years ago by Woongshik Choi
Micro templates
3 years ago by epszaw
Flexible embedded micro templates powered by javascript functions
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
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
Pickly PageBlend
3 years ago by Dmitrii Mitrichev
The easiest way to share your Obsidian notes
AI Editor
3 years ago by Zekun Shen
Search Templates Library
3 years ago by Pentchaff
Obsidian plugin that allows to store searches templates for later use, and displays search results both in the search view and graph view.
Cannoli
3 years ago by blindmansion
Cannoli allows you to build and run no-code LLM scripts using the Obsidian Canvas editor.
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!
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
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
2 years ago by Jeremy Overman
File Cleaner Redux
2 years ago by husjon
A plugin for Obsidian to help clean up files in your vault
Paste Link
2 years ago by Jose Elias Alvarez
Intelligently paste Markdown links in Obsidian.
Formatto
2 years ago by Deca
Simple, fast, and easy-to-use Obsidian Markdown formatter.
Autocorrect Formatter
2 years ago by b-yp
A plugin running on Obsidian that utilizes autocorrect to format Markdown content.
Highlight Helper
2 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
Ollama Chat
2 years ago by Brumik
A plugin for chatting with you obsidian notes trough local Ollama LLM instead of Chat GTP.
Strip Internal Links
2 years ago by Adi Ron
A simple Obsidian plugin to strip internal links from files
YouTube Template
2 years ago by sundevista
📺 A plugin that would help you to fetch YouTube videos data into your vault.
Reason
2 years ago by Joshua Pham
Digest your Obsidian notes
Outline++
2 years ago by Ryota Ushio
Templated daily notes
2 years ago by digitorum
Allow to create templayted daily note in specific folder
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
PDF++
2 years ago by Ryota Ushio
PDF++: the most Obsidian-native PDF annotation & viewing tool ever. Comes with optional Vim keybindings.
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
Local LLM Helper
2 years ago by Mani Mohan
An Obsidian plugin to process text, chat with AI, and semantically search your notes — works with any OpenAI-compatible LLM server (Ollama, LM Studio, vLLM, and more).
Fuzzy Note Creator
2 years ago by HaloGamer33
An Obisidan plugin for quickly creating notes with the help of a fuzzy finder. Now with templates!
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.
Templify
2 years ago by Boninall
A releases repo for custom editable template in Obsidian.
Docxer
2 years ago by Developer-Mike
🚀 Boost your productivity by previewing and converting Word files easily to markdown.
Simple Prompt
2 years ago by David Zachariae
Simple Prompt Plugin is a plugin for Obsidian that allows you generate content in your notes using LLMs.
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
Caret
2 years ago by Jake Colling
Caret, an Obsidian Plugin
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!
Smart Templates
2 years ago by 🌴 Brian Petro
Smart Templates is an AI powered templates for generating structured content in Obsidian. Works with Local Models, Anthropic Claude, Gemini, OpenAI and more.
Recursive Copy
2 years ago by datawitch
Import GitHub Readme
2 years ago by Chasebank87
Pug Templates
2 years ago by Nicholas Wilcox
An Obsidian plugin that enables the usage of Pug templates.
Templater
6 years ago by SilentVoid
A template plugin for obsidian
Markdown prettifier
5 years ago by pelao
A markdown prettifier for obsidian
Mind Map
5 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
Buttons
5 years ago by Sam Morrison
Buttons in Obsidian
Hotkeys for templates
5 years ago by Vinzent
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
Liquid Templates
5 years ago by Diomede Tripicchio
Define your templates with LiquidJS tags support
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
Daily Named Folder
5 years ago by Nemo Andrea
Like daily note, but nested in a daily folder and some more improvements
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.
Image Caption
5 years ago by bicarlsen
Add captions to images in Obsidian.
Copy as LaTeX
4 years ago by mo-seph
Quick plugin to be able to copy/paste from Obsidian/Markdown into a Latex document
CardBoard
4 years ago by roovo
An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
CookLang Editor
4 years ago by death_au/cooklang
Edit and display Cooklang recipes in Obsidian
From Template
4 years ago by mo-seph
Simple plugin to create Notes from a template, and fill in fields defined there
Remove HTML Tag
2 years ago by ChenPengyuan
Immersive Translate
2 years ago by imfenghuang
Immersive Translate For Obsidian
LLM Summary
2 years ago by QSun
wip
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.
PromptCrafter
2 years ago by Fabrice Hong
Create reusable, modular prompts in Obsidian
Arweave Uploader
2 years ago by makesimple
Hexo Toolkit
a year ago by Xiangru
An Obsidian plugin for maintaining Hexo posts.
Markdown Timeline
a year ago by Jiaheng Zhang
An Obsidian plugin to record the events in a Flashback timeline
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.
Insta TOC
a year ago by Nick C.
Generate, update, and maintain a table of contents for your notes while typing in real time.
Simple Todo
a year ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Friday
a year ago by sunwei
Write anywhere. Publish everywhere. Sync your notes, publish instantly, turn Markdown into websites.
Chronos Timeline
a year ago by Claire Froelich
Render interactive timelines in your Obsidian notes from simple Markdown.
LLM workspace
a year ago by Olivér Falvai
Visual Crossing Weather
a year ago by willasm
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
Template by Note Name
a year ago by Jacob Learned
A simple Obsidian plugin to automatically template notes based on their title
Note From Form
a year ago by Sergei Kosivchenko
Obsidian plugin that adds support to define input form and generate notes based on it
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
Data Files Editor
a year ago by ZukTol
Obsidian.md plugin for editing text data files
Varinote
a year ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to add variables in Templates and set their values during the Note creation.
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
LLM Tagger
a year ago by David Jayatillake
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
LLM Test Generator
a year ago by Aldo E George
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.
Note to RED
a year ago by Yeban
一键将 Obsidian 笔记转换为小红书图片进行导出
WeWrite
a year ago by Learner Chen
Obsidian plugin to render note as WeChat MP article.
Large Language Models
a year ago by eharris128, r-mahoney, & jsmorabito
The LLM plugin gives Obsidian users access to local and web-based, large language models via several chat interfaces: modal, widget, FAB window, and commands.
Daily Notes Automater
a year ago by David Pedrero
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Template Filename
a year ago by Callum Alpass
Obsidian plugin for creating notes with templatable filenames
Pure Chat LLM
a year ago by Justice Vellacott
Turn notes into conversations with chatGPT or better yet Ollama
LLM docs
a year ago by Shane Lamb
Chat with LLM in regular markdown files in Obsidian
Character Sheets
10 months ago by Grayvox
Create character sheets for your very own traumatized little guys with Obsidian.
Simple Vault Importer
10 months ago by WebInspectInc
Markdown Calendar Generator
10 months ago by Zach Russell
An intentionally simple obsidian markdown table calendar generator
Simple Columns
10 months ago by Josie
An Obsidian plugin that lets you create easily resizable and customizable columns in your notes.
LLM Shortcut
9 months ago by Viktor Chernodub
A plugin for Obsidian that provides a way to create shortcuts for commands powered by LLM capabilities.
Keyboard Formatter
8 months ago by Lauloque
Formats keyboard text (kbd) in your Obsidian notes quickly and consistently.
Custom Comments
8 months ago by Jack Chronicle
Adds a method to create custom methods to enclose comments
Note Minimap
8 months ago by Yair Segel
Add a minimap to your Obsidian notes.
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.
Canvas LLM
7 months ago by Mike Farlenkov
A canvas-like UI to talk with LLMs in Obsidian.
Emoji selector
7 months ago by summer
Insert custom emojis with quick search, auto-suggestions, and customizable templates.
Copy As PlainText
7 months ago by Finickyspider
Adds a markdown stripper that allows you to copy your notes to clipboard as plaintext
Steward
6 months ago by Dang Nguyen
A vault-specific agent equipped with agentic capacity, fast search, flexible commands, vault management, and terminals to "jump" into other CLI agents, such as Claude, Gemini, etc.
GH Links Shortener
6 months ago by David Barnett
Obsidian plugin to set shortened link text for pasted GitHub URLs
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.
SlashComplete
5 months ago by Spiderpig86
Notion-style Markdown autocompletion for Obsidian.
Default Template
4 months ago by raeperd
obsidian plugin to set default template for new notes
YOLO
4 months ago by Lapis0x0
Smart, snappy, and multilingual AI assistant for your vault.
Handlebars Dynamic Templating
3 months ago by Hide_D
Handlebars dynamic templating. Define template files and use them dynamically via hb blocks. Template recursion is also possible.
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
Blueprint
3 months ago by François Vaux
Repeatable templates plugin for Obsidian
Archivist Importer
2 months ago by Archivist AI
Import selected vault files into Archivist campaigns.
LongtimeDiary
2 months ago by sawamaru
Show past Daily notes on the same day in previous years.