I have just built a portfolio website with hugo. Everything is working as expected except the blog posts are not rendering images that I placed in static folder. I was originally using 0.16 version of hugo. Updating to the latest (0.31) did not help.
I tried several formats in my blog post markdown:
+++
date = "2017-12-29T05:14:00-06:00"
draft = false
title = "test"
+++
This is a test post for images.
![Test Image](image.png)
![Test Image](/image.png)
<img src = "/static/image.png">
I would appreciate any suggestions!
![Test Image](/image.png)
. The first and the third one are wrong. – Car