Comment on Pictures of kittens for use as placeholders in your designs or codeparentComments−rbanffy15yYou can probably do that with Emacs ;-)−soamv15y(insert-image (create-image "/path/to/image/file")) inserts an image into a buffer.But I'm not sure one would want to actually use that while editing; emacs is not very good about flowing text around the displayed image.−lanstein15ythe code to do it starts with (−rbanffy15yIt shouldbe a minor mode that renders images instead of image-like URLs. Not that impossible to do. It's a bit beyond my magical powers, but I am sure it also ends with a ")"−leif15yauctex does the rendering-inside-text part, but I don't know of one that does it for html img tagscan't be hard−limmeau15yThere's aview (ASCII-art image viewer which uses libaa); aview can render Ascii pictures to stdout.−leif15yaview solves a different problem
Comments
You can probably do that with Emacs ;-)
(insert-image (create-image "/path/to/image/file")) inserts an image into a buffer.
But I'm not sure one would want to actually use that while editing; emacs is not very good about flowing text around the displayed image.
the code to do it starts with (
It shouldbe a minor mode that renders images instead of image-like URLs. Not that impossible to do. It's a bit beyond my magical powers, but I am sure it also ends with a ")"
auctex does the rendering-inside-text part, but I don't know of one that does it for html img tags
can't be hard
There's aview (ASCII-art image viewer which uses libaa); aview can render Ascii pictures to stdout.
aview solves a different problem