Enhanced Copy

by Mara-Li
5
4
3
2
1
Score: 64/100

Description

Category: Note Enhancements

The Enhanced Copy plugin enables you to refine how text is copied from your Obsidian notes, preserving or adjusting markdown formatting depending on your preferences. It offers distinct modes for reading and editing views, letting you tailor link handling, footnote styles, and the treatment of highlights or callouts. You can also create personalized profiles for different copy scenarios, making it simpler to switch from one formatting style to another. For instance, internal links can be stripped down, converted, or maintained, while footnotes may be removed or changed into another recognized format. With various toggle options, you decide how deeply your selections integrate with your writing workflow. This plugin's customization capabilities help users copy content with minimal cleanup, letting you focus on polishing your ideas rather than wrestling with formatting after pasting.

Reviews

No reviews yet.

Stats

34
stars
10,168
downloads
3
forks
795
days
6
days
6
days
4
total PRs
0
open PRs
0
closed PRs
4
merged PRs
3
total issues
0
open issues
3
closed issues
71
commits

Latest Version

7 days ago

Changelog

Changelog

All notable changes to this project will be documented in this file. See commit-and-tag-version for commit guidelines.

1.1.2 (2026-06-11)

Bug Fixes

  • '_e' is defined but never used. (5230eee)
  • ensure async functions are properly awaited in copy event handlers (b3e055e)

README file from

Github

Enhanced Copy

Copy a selection in reading view while keeping the Markdown formatting

🛠️ Usage

  • Select the text you want to copy
  • Open the command palette
  • Select Copy selected text

[!NOTE] The goal is to replace the native copy function of Obsidian. You can set the command on CTRL + C (⌘+C on MacOS) Some selection doesn't work as in the native copy in Obsidian, but I didn't find a way to process the native copy function in the plugin.

⚙️ Settings

You can adjust the way the content is copied in the settings.

First, you need to set the view mode to use. You can choose between:

  • reading: Only the selected text in reading view will be edited
  • editing : Only the selected text in editing view will be edited
  • all : The selected text will be edited in both views

You can also choose to add a command for each copy-mode. It will create a command for :

  • Reading view (with checkCallback)
  • Editing view
  • Non markdown view (canvas, database-plugin...)

Finally, you can to choose to override the default copy (from menu and the CTRL/⌘ + C). Pretty useful for mobile!

[!Note] The default copy is disabled on canvas, so I advice you to use the command separator to set an hotkey/button for "other" view & use the default copy on markdown view (reading and LP/source mode).

The reading view and editing view have ~ the same settings, but you need to set them separately. It will allow having different copy settings for each view.

You can enable the overriding of native copy for each view, so it could be disabled for reading view and enabled for editing view (and vice versa).

[!warning] If so, any change to the settings (including CSS file for RTF) will need Obsidian to be reloaded.

You can create "profile", that will add a command (after reloadig Obsidian), so you can create a profile for copying on Discord and use it sometimes.

Common settings

These settings are the same for both views. As they are separate for each view, if you want some edit in the two views, you need to set them twice. It is done on purpose to prevent surprise when you use the plugin on editing view but don't want some changes.

Info The button in the first tab "copy" will allow you to copy the settings for one view to the other.

  • You can change the aspect of the links:
    • Keep : Don't change the link (so they will be in [link](url) format)
    • Remove all : Remove all the links, and keep only the alias (so [link](url) will be link)
    • Remove only for internal links : Remove only the internal links (so [link](url) will be link but [link](https://example.com) will be [link](https://example.com))
  • Same, you can change the footnote settings:
    • Keep : Don't change the footnote (so they will be in the strange format of Obsidian turndown: footnote[[1]](#fn-1-xxx))
    • Remove all : Remove all the footnotes, and keep only the alias (so footnote[[1]](#fn-1-xxx) will be footnote)
    • Format as [^1]: Convert footnote[[1]](#fn-1-xxx) to footnote[^1] These settings will also fix the "markdown contents," aka the footnote at the end of the documents.

      Info
      With the format option, if you copy multiple footnote, they will be [^1]: [^2]: etc..., not a numbered list!

  • Unconventional markdown:
    • Highlight: Remove == around the highlighted text
    • Fix callout:
      • Obsidian format : Keep the same format
      • Type to strong : Convert all in blockquote and transform the type to bold: > [!info] will become > **Info** (à la GitHub Callout)
      • Simple blockquote : Remove type, keep title and convert to blockquote.
  • Other:
    • Strict line breaks: Add two spaces at the end of each line
  • Regex replacement: You can add more replacement to the copy with the button that will open a modal. Note that the replacement will be done after all other changes.
  • Convert to HTML and copy as rich text: See HTML section.

Not common settings

Reading view
  • Space number : By default, turndown will convert tabulation to 4 spaces. You can change this size here.
Editing view
  • Convert wikilinks to Markdown links: Convert [[link]] to [link](link). Needed to convert the links (as in reading view).
  • Convert tabulation to space and choose the size

HTML

You can export the text into HTML format instead of Markdown, and also choose to export as "Rich text".

The rich text needs a proper CSS to works, so you can set the path to a CSS file in the settings. You can use the default one provided in the plugin, or create your own. Any file within obsidian (including .obsidian) can be used.

It is important that the CSS file includes all the styles for basic Markdown elements (like h1, h2, strong, em, code). You mustn't use any variable from Obsidian. The default CSS is defined here.

[!tip] In reading view, the HTML is generated from the Markdown (using the Obsidian API).

📝 Limitations

  • For a strange reason, the first line of a blockquote / list / callout is not selected totally properly as HTML. If you want to format only a part of this, you need to select the line before (or after). You can use "invisible" characters, $~~$ for example.
  • Not support Mathjax copying (as you can't select them in reading view).
  • In reading view, already "HTML writing" are not copied as HTML (like <b>…</b>). They are copied as Markdown, or only the text is copied (if not basic html). You can prevent this using the data-type="html" attribute on the element. For example, b data-type="html" will be copied as <b>…</b>.
  • Selecting text with image will copy the name of the image. If you want to copy the image, you need to select the image itself (not the text).

📥 Installation

  • From Obsidian's community plugins
  • Using BRAT with https://github.com/Mara-Li/obsidian-enhanced-copy
  • From the release page:
    • Download the latest release
    • Unzip obsidian-enhanced-copy.zip in .obsidian/plugins/ path
    • In Obsidian settings, reload the plugin
    • Enable the plugin

🤖 Developing

To make changes to this plugin, first ensure you have the dependencies installed. First, don't forget that you need Node. The package manager used in the project is pnpm so you need to install it globally.

npm i pnpm -g
pnpm install

To start building the plugin with what mode enabled run the following command:

pnpm run dev

Note
If you haven't already installed the hot-reload-plugin you'll be prompted to. You need to enable that plugin in your obsidian vault before hot-reloading will start. You might need to refresh your plugin list for it to show up. To start a release build run the following command:

pnpm run build

Note
You can use the .env file with adding the key VAULT_DEV to specify the path to your Obsidian (development) vault. This will allow you to test your plugin without specify each times the path to the vault.

📤 Export

You can use the npm run export command to export your plugin to your Obsidian Main Vault. To do that, you need the .env file with the following content:

VAULT=path/to/main/vault
VAULT_DEV=path/to/dev/vault

🎼 Languages

  • English
  • French

To add a translation:

  • Fork the repository
  • Add the translation in the src/i18n/locales folder with the name of the language (ex: fr.json)
  • Copy the content of the en.json file in the new file
  • Translate the content
  • Create a pull request

Similar Plugins

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