NotePix

by Ayush Parkara
5
4
3
2
1
Score: 54/100

Description

Category: 3rd Party Integrations

The NotePix plugin automates the process of handling images inside your notes by uploading them directly to a GitHub repository. When you paste or drag an image into a note, it is instantly uploaded and the local link is replaced with either a fast CDN hosted URL for public repos or a secure internal link for private ones. This keeps your vault lightweight while ensuring your images remain accessible anywhere. It supports both desktop and mobile, provides AES-GCM encryption for your GitHub Personal Access Token and allows you to configure repository details, branches and folder paths. In private mode, images are displayed seamlessly in Reading View through secure token based fetching.

Reviews

No reviews yet.

Stats

9
stars
682
downloads
2
forks
319
days
12
days
12
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
8
total issues
0
open issues
8
closed issues
0
commits

RequirementsExperimental

Latest Version

13 days ago

Changelog

Fully backward-compatible. All new options are off by default, so existing setups behave exactly as before until you opt in.

✨ New features

  • Fix image links to working format — a command that auto-detects your repo mode and rewrites the current note's image links to the format that actually renders: private → internal v2 links; public → jsDelivr CDN (if enabled) or raw GitHub links. Handy after a repo's visibility changes.
  • Portable local folders (opt-in) — designate folders whose notes keep their images local (never uploaded): images are named after the note, stored in a photos subfolder inside the folder, and linked with a relative path so the whole folder can be moved without breaking images. Configurable subfolder name and link format (relative Markdown or wikilink).

🛠 Fixes & improvements

  • New tokens take effect immediately — saving a new or updated token no longer requires restarting Obsidian.
  • Images no longer stay stuck as "broken" — when the token changes, image caches are cleared and the current note re-fetches, so previously-failed images recover without a restart.
  • Clearer token-access error — if a token can't reach the repository, NotePix now explains it (check the token's repository access and Contents permission) instead of failing silently.

📦 Install

Install or update from Obsidian → Settings → Community plugins. Or download main.js and manifest.json below into <vault>/.obsidian/plugins/notepix/.

Full changelog: https://github.com/AyushParkara/NotePix/blob/main/CHANGELOG.md

README file from

Github

NotePix

Keep your Obsidian vault lightweight.

Paste an image, and NotePix automatically uploads it to GitHub and replaces the local file with a fast hosted link — so your notes stay small, fast, and portable. Public or private repos, encrypted token storage, desktop & mobile.

Built for Obsidian Release Downloads License: MIT

NotePix demo — paste an image and it uploads to GitHub automatically

📦 Install

From Obsidian (recommended):

  1. Open Settings → Community plugins → Browse.
  2. Search for “NotePix”.
  3. Click Install, then Enable.

Or install manually: download main.js and manifest.json from the latest release into <vault>/.obsidian/plugins/notepix/.

New here? Jump to the Setup Guide — it takes about 3 minutes.

📑 Table of Contents

💡 Why NotePix

I built NotePix after getting burned by third-party image hosts. I was using a public uploader (Imgur-style), and two things bothered me: my uploaded images were public — anyone who found my account could see all of them — and I had no guarantee the service would even stick around (plenty have shut down). I didn't want my notes' images living somewhere I didn't control.

NotePix fixes that. It uploads your pasted images to your own GitHub repository — which can be private — and replaces the local file with a hosted link. Your images live in storage you own and control, public only if you choose, and your vault stays lightweight, fast to sync, and portable.

✨ Features

The essentials:

  • 📋 Paste-and-go — paste or drag an image into a note; NotePix uploads it and swaps in the hosted link automatically.
  • 🔒 Public or private repos — private images render on the fly (Reading View and Live Preview) via authenticated fetch. Auto mode detects your repo's privacy and picks the right link format.
  • 🔑 Encrypted token storage — your GitHub token is encrypted with AES-GCM (never stored in plain text unless you explicitly choose to); unlocked once per session with a master password.
  • 📱 Desktop & mobile — works on Obsidian Desktop and Mobile (Android/iOS), including the mobile attachment button.
  • 🗑️ Delete safely — right-click any NotePix image to delete it from GitHub and the note, with a guard that warns if it's used in other notes.
  • Upload existing images — run "Upload all local images in current note" to upload every already-embedded local image in one pass (uploads first, then rewrites the note once — no clobbered links).
  • Multi-select delete — tick several images from a checklist and delete them together.
  • Find orphaned images — review repo images no note or canvas references anymore, and delete only the ones you pick (report-only; never auto-deletes).
  • Right-click Copy — copy the actual image (private or public), or copy the URL (public/CDN only).
  • jsDelivr CDN (optional) — for public repos, serve images via the fast jsDelivr CDN; commands convert a note's links between raw and CDN. Auto-disabled for private repos.
  • Note-path storage (optional) — mirror each note's vault path in the repo instead of one global folder.
  • Heading-based filenames (optional) — name uploads after the note/heading (e.g. MyNote-Setup-1.png) instead of a timestamp.
  • Repo Mode Intelligence — mismatch prompt (Use Auto / Switch to Private / Keep Public) when a private repo has public raw links; self-describing private links that survive repo-setting changes; fallback rendering for old raw links from your other repos.
  • Clean up — optionally delete the local file after a successful upload (only after the link is safely replaced).
  • Smart hover detection — password prompts appear only in main document views, not during hover/page previews.

🚀 Setup Guide

Create a new GitHub repository to store your images. Name it anything (e.g. obsidian-assets). It can be public or private — NotePix supports both.

NotePix needs a token to upload files.

Recommended (fine-grained, safest):

  1. GitHub → Settings → Developer settings → Personal access tokens → Fine-grained tokens.
  2. Generate new token. Set an expiration.
  3. Repository access → Only select repositories → choose your image repo.
  4. Permissions → Repository permissions → Contents → Read and write. (Metadata: Read is added automatically — that's all NotePix needs.)
  5. Generate and copy the token immediately (you won't see it again).

This covers everything: uploading, rendering (public & private), deleting, and finding orphaned images.

Note: one advanced feature — automatically resolving old, pre-v2 image links (from very early NotePix versions, e.g. after you renamed or switched image repos) — needs to look across your repositories, which a single-repo token can't do. If you have such legacy links, use a classic token (below). New setups never need it.

Developer settings → Tokens (classic) → Generate new token (classic) → check the repo scope → Generate. Note: a classic repo token grants access to all your repos, so the fine-grained option above is safer for most people.

Open Settings → NotePix and fill in:

Setting Description Example
GitHub Username Your GitHub username (case-sensitive). AyushParkara
Repository Name The repo you created in Step 1. obsidian-assets
Repository Visibility Auto detects privacy and picks the right link format. Public/Private force behavior. Auto
Branch Name The branch to upload to. main
Folder Path in Repository Directory inside the repo for images (a / is added automatically). assets/
Delete Local File Delete the vault copy after a successful upload. false
Use jsDelivr CDN (Optional) Serve public-repo images via the CDN. false
Image storage layout Global folder or Mirror note path. Global
Name images after note/heading (Optional) MyNote-1.png instead of a timestamp. false

Encryption (recommended):

  1. Toggle Enable Encryption on.
  2. Enter a strong Master Password (never saved anywhere).
  3. Paste your PAT, then click Save Encrypted Token.

You're set — the next image you paste will upload automatically. ✅

🧰 Commands

Open the Command Palette (Ctrl/Cmd + P) and search “NotePix”:

Command What it does
Upload all local images in current note Uploads every local image embedded in the active note and replaces the links.
Delete images in current note (multi-select) Checklist of the note's images; delete selected ones from GitHub + note.
Find orphaned images on GitHub Lists repo images no note/canvas references; pick which to delete.
Convert image links in note to jsDelivr CDN Rewrites the note's public image links to CDN format.
Convert image links in note to GitHub raw Rewrites the note's public image links back to raw GitHub format.

You can also right-click an image (editor or rendered) for Copy image, Copy URL (public only), and Delete image (GitHub + note).

⚙️ How it Works

Auto (Recommended) — on upload, NotePix checks repo privacy (cached 10 min). Public → inserts https://raw.githubusercontent.com/.... Private → inserts a self-describing internal link obsidian://notepix/v2/<owner>/<repo>/<branch>/<path>.

Public — always inserts raw GitHub URLs. Can still render matching existing raw links from your configured GitHub user via authenticated fetch.

Private — always inserts private internal links, fetched and rendered in Reading/Live Preview using your token.

If the repo appears private while notes contain matching raw links, NotePix shows a 3-button modal: Use Auto Mode, Switch to Private, or Keep Public. Prompts are suppressed per repo with a cooldown to avoid repeated interruptions.

Private images render in both Reading View and Live Preview through authenticated fetch (in-memory; no temp files). If encryption is enabled, you're prompted for the master password once per session when a token unlock is first needed.

🔐 Security

Your GitHub token is protected:

  • AES-GCM (256-bit) encryption, key derived with PBKDF2 (100,000 iterations).
  • Master password is never stored — it only exists in memory while you type it.
  • The decrypted token lives in memory for the session and is cleared on unload.

See SECURITY.md for the full model and how to report a vulnerability. For the smallest risk, prefer a fine-grained token scoped to just your image repo.

🙏 Support

Created by Ayush Parkara. If NotePix saves you time, consider supporting development:

You can also help by ⭐ starring the repo, reporting bugs, or sharing NotePix with other Obsidian users.

📄 License

Released under the MIT License.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Excalidraw
5 years ago by Zsolt Viczian
A plugin to edit and view Excalidraw drawings in Obsidian
Templater
6 years ago by SilentVoid
A template plugin for obsidian
Git
6 years ago by Vinzent, (Denis Olehov)
Integrate Git version control with automatic commit-and-sync and other advanced features in Obsidian.md
Advanced URI
5 years ago by Vinzent
Advanced modes for Obsidian URI
Smart Composer
2 years ago by Heesu Suh
AI chat assistant for Obsidian with contextual awareness, smart writing assistance, and one-click edits. Features vault-aware conversations, semantic search, and local model support.
Execute Code
4 years ago by twibiral
Obsidian Plugin to execute code in a note.
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.
Shell commands
5 years ago by Jarkko Linnanvirta
Execute system commands via hotkeys or command palette in Obsidian (https://obsidian.md). Some automated events are also supported, and execution via URI links.
CustomJS
5 years ago by Sam Lewis
An Obsidian plugin to allow users to reuse code blocks across all devices and OSes
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
Modal forms
3 years ago by Danielo Rodriguez
Define forms for filling data that you will be able to open from anywhere you can run JS
Imgur
6 years ago by Kirill Gavrilov
Pastes images right to imgur.com
Fit
2 years ago by joshuakto
File gIT (FIT) to sync your files across mobile and desktop devices using GitHub.
AI Providers
a year ago by Pavel Frankov
This plugin is a hub for setting AI providers (OpenAI-like, Ollama and more) in one place.
Khoj
4 years ago by Debanjum Singh Solanky
Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (gpt, claude, gemini, llama, qwen, mistral). Get started - free.
Note Linker
4 years ago by Alexander Weichart
🔗 Automatically link your Obsidian notes.
GitHub Sync
2 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Github Copilot
2 years ago by Vasseur Pierre-Adrien
A bridge between Obsidian and Github Copilot
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
Auto Template Trigger
3 years ago by Numeroflip
An obsidian.md plugin, to automatically trigger a template on new file creation
Pieces for Developers
3 years ago by Pieces For Developers
Pieces' powerful extension for Obsidian-MD that allows users to access their code snippets directly within the Obsidian workspace
Regex Pipeline
5 years ago by No3371
An Obsidian plugin that allows users to setup custom regex rules to automatically format notes.
Prompt ChatGPT
2 years ago by Coduhuey
Enhanced Canvas
a year ago by RobertttBS
When editing on Canvas, properties and Markdown links to notes are automatically updated, enabling backlinks in Canvas.
GitHub Gitless Sync
a year ago by Silvano Cerza
Sync a GitHub repository with vaults on different platforms without requiring git installation
Text Expander JS
4 years ago by Jonathan Heard
Obsidian plugin: Type text shortcuts that expand into javascript generated text.
AI Tagger
2 years ago by Luca Grippa
Simplify tagging in Obsidian. Instantly analyze and tag your document with one click for efficient note organization.
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.
Apply Patterns
5 years ago by Jacob Levernier
An Obsidian plugin for applying patterns of find and replace in succession.
AI Tagger Universe
a year ago by Hu Nie
An intelligent Obsidian plugin that leverages AI to automatically analyze note content and suggest relevant tags, supporting both local and cloud-based LLM services.
Differential ZIP Backup
2 years ago by vorotamoroz
Automatic Linker
a year ago by Kodai Nakamura
Attachment Manager
3 years ago by chenfeicqq
Attachment folder name binding note name, automatically rename, automatically delete, show/hide.
YouVersion Linker
3 years ago by Jaanonim
Obsidian plugin that automatically link bible verses to YouVersion bible.
GitHobs
2 years ago by GabAlpha and MarcoG
Use Obsidian as Github issue editor! A simple plugin to create Github issues directly from Obsidian with logic taken from Git
Gist
5 years ago by Jun Lin
📒 Gist View for Obsidian(https://obsidian.md)
Share as Gist
4 years ago by timrogers
An Obsidian (https://obsidian.md/) plugin for sharing your notes as a GitHub gist - either privately or publicly.
Day and Night
4 years ago by Kevin Patel
An Obsidian plugin to automatically switch between day and night themes based on a set schedule
Webhooks
5 years ago by Stephen Solka
Connect obsidian to the internet of things via webhooks
Linkify
4 years ago by Matthew Chan
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
RunJS
3 years ago by eoureo
Let's run JavaScript easily and simply in Obsidian.
Auto Filename
3 years ago by rcsaquino
Auto Filename is an Obsidian.md plugin that automatically renames files in Obsidian based on the first x characters of the file, saving you time and effort.
S3 Image Uploader
3 years ago by jvsteiner
This project implements an image uploader, similar to others offered by the community, with one important difference: you can provide your own s3 based storage, instead of relying on a third party service, such as imgur.
Weekly Review
4 years ago by Brandon Boswell
Substitutions
2 years ago by BambusControl
Automatic text replacer for Obsidian.md
Image Uploader
5 years ago by Creling
InlineAI
a year ago by FBarrca
GitHub Embeds
3 years ago by Gino Valente
Embed GitHub issues, PRs, and code snippets directly in Obsidian
Current View
a year ago by Lucas Ostmann
Automatically set the view mode (Reading, Live Preview, Source) for notes in Obsidian using folder rules, file patterns, or frontmatter.
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
Snippets
6 years ago by Pelao
Publish and GitHub URL
5 years ago by kometenstaub
Copy or open the Obsidian Publish URL of a note. You can also open its Git commit history on GitHub.
JavaScript Init
5 years ago by ryanpcmcquen
Run custom JavaScript in Obsidian.
Packrat
4 years ago by Thomas Herden
Process completed instances of recurring items created by the Obsidian Tasks plugin
Cron
3 years ago by Callum Loh
Obsidian cron / schedular plugin to schedule automatic execution of commands
Emo
4 years ago by yaleiyale
Use image/file hosting in Obsidian by clipboard or draging file. Obsidian 图床聚合 & Github上传器
Auto Periodic Notes
2 years ago by Jamie Hurst
Obsidian plugin to create new periodic notes automatically in the background and allow these to be pinned in your open tabs. Requires the "Periodic Notes" plugin.
Gnome Terminal Loader
3 years ago by David Carmichael
Automation
2 years ago by Benature
Auto Hyperlink
3 years ago by take6
GitHub Link
2 years ago by Nathonius
Auto Front Matter
3 years ago by conorzhong
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
Save as Gist
4 years ago by ghedamat
Open File by Magic Date
4 years ago by simplgy
Steward
9 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.
Title As Link Text
a year ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
GitHub Issue Augmentation
3 years ago by samprintz
NeuroVox
2 years ago by Synaptic Labs
Obsidian plugin for transcription and generation
Snippets Manager
2 years ago by Venkatraman Dhamodaran
Snippets Manager (Text Expander) For Obsidian
Babashka
3 years ago by Filipe Silva
Run Obsidian Clojure(Script) codeblocks in Babashka.
Tab Rotator
3 years ago by Steven Jin
Obsidian Rotate opened tabs with a specified time interval
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
Run
3 years ago by Hananoshika Yomaru
Generate markdown from dataview query and javascript.
RSS Copyist
2 years ago by aoout
Get the RSS articles as notes.
Tag Breakdown Generator
3 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
Note UID Generator
a year ago by Valentin Pelletier
Allow you to automatically generate UID for the notes in your vault.
Note 2 Tag Generator
2 years ago by Augustin
Daily note creator
2 years ago by Mario Holubar
Automatically creates missing daily notes.
GitHub Integration
a year ago by Kirill Zhuravlev
Plugin that fetch your github stars into notes
Google Calendar Importer
10 months ago by Fan Li
A simple and light-weighted google calendar importer, allow injecting the events / tasks of a day automatically to your daily notes, or import it to anywhere with a command.
Personal OS
2 years ago by A.Buot
Gistr
2 years ago by Aetherinox
Obsidian.md plugin which allows you to use your notes to embed, create, and update gists for Github and Opengist. Light & dark theme support, create / update public & private gists either manually or with autosave.
Auto Replacer
a year ago by Alecell
A live text replacement plugin that applies automatic formatting, corrections, or custom replacements in real-time. Define your own regex-based rules and transformation logic to modify text dynamically as you type.
Inkporter
a year ago by Ayush Kumar Saroj
Inkporter is an Obsidian plugin that digitizes handwritten notes with smart ink isolation, adaptive theming, and seamless import workflows.
Todos sort
2 years ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Missing Link File Creator
2 years ago by Lemon695
The plugin creates both missing links and the corresponding files.
Timeline Canvas Creator
a year ago by chris-codes1
Quickly create timeline structured canvases in Obsidian.
Last Position
a year ago by saktawdi
Automatically scroll to the last viewed position when opening the markdown document.
Vault File Renamer
a year ago by Louan Fontenele
Vault File Renamer: Automatically standardizes file names to GitHub style (lowercase, no accents, only -, ., _) while preserving folder structure and file contents.
pycalc
2 years ago by pycalc
AI integration Hub
a year ago by Hishmat Salehi
A modular AI integration hub for Obsidian
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
LinkMagic
2 years ago by AndyReifman
Template Filename
a year ago by Callum Alpass
Obsidian plugin for creating notes with templatable filenames
Github Issues
a year ago by LonoxX
An Obsidian plugin that integrates with GitHub to track issues and pull requests directly in your vault.
Sentinel
2 years ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to update properties or run commands based on document visibility changes.
tidit
a year ago by codingthings.com
tidit is an Obsidian - https://obsidian.md - plugin that adds timestamps to your document as you type — when you want it, how you want it, where you want it.
URL Formatter
a year ago by Thomas Snoeck
Automatically formats specific URLs pasted into Obsidian into clean Markdown links.
Import GitHub Readme
2 years ago by Chasebank87
Task Mover
a year ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Organized daily notes
a year ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Hotstrings
a year ago by wakywayne
Rapid AI
2 years ago by Rapid AI
AI Assistant for selected text and generating content with Markdown. Shortcuts and quick action buttons provide instant AI assistance. It provides a high availability API for unlimited Chat GPT request rates, so you can ensure smooth work for any workload.
Runsh
a year ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
Tasks Cleaner
a year ago by lowit
🧹 Tasks Cleaner is a plugin for Obsidian that helps you automatically remove old completed tasks from your Markdown notes
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.
Rsync
a year ago by Ganapathy Raman
An Obsidian plugin to perform sync files between machines using Rsync
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
Tencent COS for Imgur
2 years ago by bobostudio
🔥 Obsidian 腾讯云 COS 图床插件
Discord Message Sender
a year ago by okawak
Obsidian Plugin: Send messages from a Discord channel to your Vault
Vault to blog
2 years ago by barkstone2
Automation tool of making react SPA blog by obsidian vault.
Mastodon Threading
a year ago by El Pamplina de Cai
Obsidian plugin to compose and post threads to Mastodon
Watched-Metadata
2 years ago by Nail Ahmed
Watches for changes in metadata and updates the note content accordingly.
Daily Note Structure
2 years ago by db-developer
This obsidian plugin creates a structure for your daily notes
Auto Daily Note
a year ago by John Dolittle
GitHub Stars
a year ago by Flying Nobita
Obsidian plugin that displays GitHub star ⭐ counts next to repository links in your notes, in Reading View, Live Preview, and embedded markdown.
Plugin REPL
a year ago by readwithai
An in-note Read Evaluate Print Loop to execute JavaScript within Obsidian
Fast Image Auto Uploader
2 years ago by Longtao Wu
upload images from your clipboard by gopic
Daily Notes Automater
a year ago by David Pedrero
GitHub Tasks
a year ago by Mike Thicke
Obsidian plugin to sync GitHub issues and PRs to Obsidian TODOs
ImgBB Uploader
2 years ago by Jordan Handy
An image uploader to imgBB for Obsidian
Copy Local Graph Paths
a year ago by Amy Z
copy-local-graph-paths is a simple Obsidian plugin that copies the paths of notes linked to your current page.
Open in GitHub
a year ago by Muurphy Chen
This is an Obsidian plugin designed to open project or files directly in GitHub via your browser.
Blog AI Generator
a year ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
Current File
2 years ago by Mark Fowler
An Obsidian plugin to allows external applications to know what file Obsidian is currently viewing
Open or Create File
9 months ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
IMSwitch in Math Block
a year ago by XXM
Notes 2 Tweets
2 years ago by Tejas Sharma
Generate and schedule tweets automatically from your notes on Obsidian
Hanko
2 years ago by Telehakke
Obsidian plugin.
Paste as Embed
2 years ago by Matt Laporte
Obsidian plugin to paste contents of clipboard into a new note, and embed it in the active note.
GH Links Shortener
9 months ago by David Barnett
Obsidian plugin to set shortened link text for pasted GitHub URLs
Random Wikipedia Article
a year ago by SpencerF718
An Obsidian plugin to generate a note of a random Wikipedia article.
Content OS
a year ago by eharris128
Post to LinkedIn from within Obsidian
Handlebars Dynamic Templating
6 months ago by Hide_D
Handlebars dynamic templating. Define template files and use them dynamically via hb blocks. Template recursion is also possible.
KOI Sync
a year ago by Luke Miller
Move Cursor On Startup
10 months ago by Jared Kelnhofer
Obsidian plugin to move the cursor to the right and back to the left when starting up. Why? To keep DataView expressions from not running on the first load of, say, your Home file.
One Step Wiki Link
a year ago by Busyo
用于 Obsidian 一步插入当前界面匹配到的所有外链(维基链接)
EUpload
a year ago by Appleex
Obsidian 插件,专用于上传文件到存储仓库。目前支持 Lskypro(兰空图床),后续有需求会引入其它存储方式,如:Github/Gitee等等。