Is there a markup editor (online / offline) that supports copying and pasting images (for example, GitHub keeps track of the problem)?

I love GitHub because you can simply paste images from the clipboard into the editor, where it automatically loads.

Is there a markdown editor that can do the same? Online or offline (Mac / PC)?

I do not want to have a full-blown WYSIWYG editor with rich text, I just want my favorite markdown with copies of images and adding paste.

+7
upload copy-paste image markdown
source share
5 answers

Since I did not find a suitable solution, I decided to create my own Markdown editor on the Internet with the ability to paste images from the clipboard: PIMP ( P asteable I magicians, Markdown, P andoc).

http://pimp.suhail.uberspace.de/en

It doesn’t look very wonderful yet, but it offers everything you need to create semantically amazing documents using Pandoc's very powerful Markdown, paste images directly from the clipboard into text and export documents in various formats (currently Docx, Epub, Odt, maybe later and PDF).

To use PIMP, you must currently create a user account.

The whole project is more a proof of concept than a real project, but if people love and use it, I would be happy to make it a real project. I am thinking of adding the following functions:

  • Upload a standard docx file to apply custom styles (and header, footer, etc.) to exported docx documents.
  • Creating different versions (forks) of a document and comparing / merging them using git diff (or a similar tool), so many people can work on one document easily
  • Providing documents privately (now everything is open)

Currently inserting text into a text box does not work in Firefox. Read more here: Issue 26 from paste.js

0
source share

This answer is very late, but found an amazing combination that also only works in offline mode (but I think this is useful):

Now you will receive a special insert command into which you can paste your buffer. It will put the PNG image in the same directory and markdown image code. Really pleased with this decision.

+6
source share

Yes, there is or is: Imperavi redactor: http://imperavi.com/redactor

Unfortunately, they removed it with v10, I have a client with v9 that works, and this is pretty surprising. Really disappointed with them by deleting it.


Edit: with my account, I still have access to download in 9.2.6, therefore with downloading the clipboard. Therefore, if you take a license, you will have access to it.

+1
source share

You can also do this with Atom .

  • Install the markdown-img-paste plugin.

  • Open the Markdown document.

  • Open the Markdown preview with Ctrl + Shift + M.

  • If you want to insert an image, start a new line, then enter the name of the PNG file to be created (without extension), then press Ctrl + V

The PNG file will be created in the same folder as the Markdown file.

+1
source share

use the big hackmd.io you can see it in action!

https://hackmd.io/features

0
source share

All Articles