mirror of
https://github.com/5krus/obsidian-seamless-embeds.git
synced 2026-07-22 07:21:54 +00:00
Makes embedded/transcluded notes visually indistinguishable from surrounding text in Obsidian. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
"use strict";
|
|
|
|
var obsidian = require("obsidian");
|
|
|
|
class SeamlessEmbedsPlugin extends obsidian.Plugin {
|
|
async onload() {}
|
|
async onunload() {}
|
|
}
|
|
|
|
module.exports = SeamlessEmbedsPlugin;
|