Is there a way to reference images in a Markdown file in such a way that they 1) preview properly when editing and 2) generate properly when processed with Pelican?
The whole reason I am trying Pelican is to make it as simple as possible to edit files locally/offline with various editors without having to run a local server. Those editors understand common image syntax like this:
![Pelican](images/pelican.jpg)
But for Pelican to generate the proper paths, I have to use:
![Pelican]({filename}/images/pelican.jpg)
Which editors don't understand and so the preview just shows broken images. This is less than ideal. Linking to images with full addresses doesn't work because I often work offline.
Is there some combination of settings--short of running a local server, which helps me not a bit when I am editing files on the ipad/etc--that would allow me to edit and properly publish using the same markup for images?