suntinglu777110 downloadsEdit Markdown files and export them as styled images through a local converter.
Markdown Image Maker opens Markdown files or selected Markdown text in an Obsidian editor view and exports the content as styled images.
.md file from the file menu.This plugin uses local Node.js modules at runtime and is available only on Obsidian desktop.
Markdown Image Maker needs a local converter backend. The default backend is a local HTTP service:
http://localhost:3000
The service must expose:
POST /api/v1/markdown-to-html
POST /api/v1/markdown-to-image
For development, the plugin can also call a local 38html project module directly. Set the backend to Local 38html module and provide the project path, for example:
E:\project\38html
You can change this path in the plugin settings. The target project must contain:
server/services/markdown-to-image.js
node_modules/
No API key is required by the plugin. If your converter service requires authentication, configure it to accept local requests before using this plugin.
The plugin reads the active Markdown file or editor selection and writes generated image files back into your Obsidian vault. It sends Markdown content only to the converter backend you configure in the plugin settings. The default target is a local URL.
npm install
npm run build
Obsidian loads:
manifest.json
main.js
styles.css