Hi, there. I’m trying to put images on my /content/mypost.md
using relative path like real directory structure.
my directory structure is like this
.
├── content
│ ├── section1
│ │ └── mypost.md
│ ├── section2
│ └── _index.md
├── static
│ ├── header
│ ├── img
│ │ ├── img1.png
│ │ ├── img2.png
│ │ └── img3.png
│ ├── logo
│ └── webfonts
What I want to do is, on /content/section1/mypost.md
, putting an image form /static/img/img1.png
at the same time, I want to preview my markdown file by other markdown editor or some text editor. so I want to use this relative path 
on mypost.md
so that I can preview.
I tried this image path 
after command ‘hugo’ but ended up missing the image. Why?
How can I do that? Is this possible?