A plugin for Obsidian that converts pasted images to HTML format instead of Obsidian's wikilink or Markdown format.
- Saves pasted images as files and inserts them as HTML image tags
- Supports custom image width
- Supports custom image save paths (e.g.,
./assets
) - Optional alt attribute for better accessibility
- Optional paste notifications
HTML image tags offer better compatibility across different platforms compared to Markdown or Obsidian's wikilink format. This is particularly useful for users who need to share their notes across different platforms and Markdown editors.
- Install the plugin in Obsidian
- Copy an image (from browser, file explorer, or screenshot tool)
- Paste in the Obsidian editor
- The image will be saved and inserted as HTML:
<img src="image_name.jpg" width="auto">
You can enable the "Use Custom Image Path" option in settings and set a custom save path for your images:
- Relative paths (e.g.,
./assets
or../images
): Images will be saved in the specified directory relative to the current file - Absolute paths (e.g.,
assets
orimages
): Images will be saved in the specified directory under your vault root
When custom path is enabled, the src attribute in HTML tags will be updated accordingly, for example:
<img src="./assets/image_1234567890.jpg" width="auto">
If custom path is disabled, images will be saved in the same directory as the current file, and the HTML tag will only use the filename:
<img src="image_1234567890.jpg" width="auto">
By default, the plugin generates HTML tags without the alt attribute to keep the code concise. If you need better accessibility or SEO optimization, you can enable the "Include Alt Attribute" option in settings, which will generate tags like:
<img src="image_1234567890.jpg" width="auto" alt="image_1234567890.jpg">
- Image Width: Set the image width, can be pixels (e.g., 500px), percentage (e.g., 100%), or auto
- Use Custom Image Path: When enabled, images will be saved to the specified path instead of the current file's directory
- Custom Image Path: Set the image save path, can be relative (e.g., ./assets) or absolute (e.g., assets)
- Include Alt Attribute: When enabled, HTML image tags will include the alt attribute for better accessibility and SEO
- Show Notifications: Choose whether to show notifications when pasting images
- Open Obsidian Settings
- Go to "Community Plugins"
- Disable "Safe Mode"
- Click "Browse"
- Search for "Image to HTML"
- Click Install
- Enable the plugin
- Download the latest version of
main.js
,manifest.json
, andstyles.css
- Copy these files to your vault's
.obsidian/plugins/img2html/
directory
- Clone this repository
- Run
npm install
to install dependencies - Run
npm run dev
to start compilation in watch mode - Copy
main.js
andmanifest.json
to your vault's.obsidian/plugins/img2html/
directory for testing
MIT