Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Image Markdown Link

ariaydariayd51 downloads

Paste images using standard Markdown syntax ![]() instead of WikiLink format ![[]], [[]], or []().

Add to Obsidian
  • Overview
  • Scorecard
  • Updates1

English | 中文


English

Convert pasted images from Obsidian's wiki-link format to standard Markdown image syntax automatically.

When you paste an image into Obsidian, it normally inserts ![[filename.png]] (wiki-link) or [](filename.png) (bare Markdown link) depending on your vault settings. This plugin intercepts that and rewrites the link to ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/filename.png) — the standard Markdown image syntax compatible with any Markdown renderer outside Obsidian.

Features

  • Works with all link formats Obsidian may auto-generate:

    Auto-generated by Obsidian Converted to
    ![[filename.png]] ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/filename.png)
    ![[subfolder/filename.png]] ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/subfolder/filename.png)
    [[path/filename.png]] ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/path/filename.png)
    [](path/filename.png) ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/path/filename.png)
    ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/path/filename.png) (already correct — no change)
  • Handles attachment folders at any depth (root, subfolder, relative paths)

  • Supports image formats: png, jpg, jpeg, gif, webp, bmp, svg, avif

  • Non-image wiki links (e.g. [[note.md]]) are never modified

Installation

From the Community Plugin Browser (recommended)

  1. Open Settings → Community plugins and disable Safe mode if prompted
  2. Click Browse, search for Image Markdown Link, and install it
  3. Enable the plugin under Installed plugins

Manual Installation

  1. Download main.js and manifest.json from the latest release
  2. Create the folder <your-vault>/.obsidian/plugins/image-markdown-link/ and place both files inside
  3. Open Settings → Community plugins, find Image Markdown Link, and enable it

Usage

No configuration needed. After enabling the plugin: ** IF it's not working, then DISABLE the plugin first, and re-enable the plugin again, it should work now. **

  1. Open any Markdown note
  2. Paste an image from the clipboard
  3. Obsidian saves the image file and inserts a link — the plugin automatically rewrites it to ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/path/to/image.png)

Note: If your vault is already set to use Markdown links globally (Settings → Files and links → Use [[Wikilinks]] is OFF), Obsidian generates ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/...) directly and the plugin skips conversion.

Compatibility

  • Minimum Obsidian version: 1.5.7
  • Platforms: desktop and mobile

中文

自动将 Obsidian 粘贴图片时生成的 Wiki 链接格式转换为标准 Markdown 图片语法。

在 Obsidian 中粘贴图片时,程序通常会根据 Vault 设置插入 ![[filename.png]](Wiki 链接)或 [](filename.png)(纯 Markdown 链接)。本插件会自动将其改写为 ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/filename.png)——即标准 Markdown 图片语法,可在 Obsidian 以外的任何 Markdown 渲染器中正常显示。

功能特性

  • 支持 Obsidian 可能自动生成的所有链接格式:

    Obsidian 自动生成 转换结果
    ![[filename.png]] ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/filename.png)
    ![[subfolder/filename.png]] ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/subfolder/filename.png)
    [[path/filename.png]] ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/path/filename.png)
    [](path/filename.png) ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/path/filename.png)
    ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/path/filename.png) (已是正确格式,不做处理)
  • 兼容任意深度的附件文件夹(根目录、子目录、相对路径)

  • 支持图片格式:png、jpg、jpeg、gif、webp、bmp、svg、avif

  • 非图片 Wiki 链接(如 [[note.md]])不会被修改

安装方式

通过社区插件市场安装(推荐)

  1. 打开 设置 → 第三方插件,如提示请关闭安全模式
  2. 点击 浏览,搜索 Image Markdown Link 并安装
  3. 在已安装插件列表中启用该插件

手动安装

  1. 从 最新 Release 下载 main.js 和 manifest.json
  2. 在 Vault 中创建文件夹 <你的Vault>/.obsidian/plugins/image-markdown-link/,将两个文件放入其中
  3. 打开 设置 → 第三方插件,找到 Image Markdown Link 并启用

使用方法

无需任何配置,启用插件后: ** 如果发现安装后插件不工作,那么先重新禁用插件,然后再重新打开插件一次,就可以了**

  1. 打开任意 Markdown 笔记
  2. 从剪贴板粘贴图片
  3. Obsidian 保存图片文件并插入链接——插件自动将其改写为 ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/path/to/image.png)

注意: 若 Vault 已全局设置使用 Markdown 链接(设置 → 文件与链接 → 使用 [[Wiki链接]] 已关闭),Obsidian 会直接生成 ![](https://raw.githubusercontent.com/ariayd/obsidian-image-markdown-link/HEAD/...) 格式,插件将跳过转换。

兼容性

  • 最低 Obsidian 版本:1.5.7
  • 平台:桌面端与移动端均支持
84%
HealthExcellent
ReviewSatisfactory
About
Convert pasted Obsidian image links (e.g., ![[file.png]], [[path/file.png]], [](file.png)) into standard Markdown image syntax that points to raw.githubusercontent.com for outside-Obsidian rendering. Handle nested attachment folders and common image formats (png, jpg, jpeg, gif, webp, bmp, svg, avif) while leaving non-image wiki links untouched.
ImagesMarkdownLinks
Details
Current version
1.0.0
Last updated
3 months ago
Created
3 months ago
Updates
1 release
Downloads
51
Compatible with
Obsidian 1.5.7+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Author
ariaydariayd
github.com/AriaYD
GitHubariayd
  1. Community
  2. Plugins
  3. Images
  4. Image Markdown Link

Related plugins

Auto Link Title

Automatically fetches the titles of links from the web.

Consistent Attachments and Links

Move note attachments and update links automatically.

Link Embed

Convert URLs in your notes into embeded previews.

Leaflet

Interactive maps inside your notes.

Auto Card Link

Automatically fetches metadata from a URL and makes it as a card-styled link.

Importer

Import data from Notion, Evernote, Apple Notes, Microsoft OneNote, Google Keep, Bear, Roam, and HTML files.

Smart Connections

AI link discovery copilot. See related notes as you write. Lookup using semantic (vector) search across your vault. Zero-setup local model for embeddings, no API keys, private.

Excalidraw

Visual PKM powerhouse. Create and edit Excalidraw drawings.

Outliner

Work with your lists like in Workflowy or Roam Research.

Various Complements

Complete words similar to auto-completion in an IDE.