I’m switching themes to docdock because of how easily implementing nesting of directories is. However, I’m having some issues with my images.
In their documentation, they have a directory in /projectName/static/
which contains their static images. Then in their markdown, they have ![][imageName.png]
. My format is exactly the same, but no images render.
I’ve tried checking the permissions of the files, and methods ranging from different syntax used in markdown, creating relative paths ie. ../../../static/fileName.png
, and using variables such as: [myImage]: ../../../static/fileName.png
For example, my current format that isn’t working is
Image location:
projectRoot/files/myImage.png
and I’m currently trying to access it in a file located here:
projectRoot/content/stuff/moreStuff/thefile.md
![][../../../files/myImage.png]
and it just renders the string “![][…/…/…/files/myImage.png]”
Any guesses as to what I’m doing wrong?