CaiJimmy / hugo-theme-stack-starter

A quickstart template to create a Hugo blog using hugo-theme-stack
https://demo.stack.jimmycai.com
MIT License
308 stars 104 forks source link

Images are not clickable #1

Closed SaberD closed 2 years ago

SaberD commented 2 years ago

Gallery does not appear to work. It simply inserts the photos without any gallery styling.

Expect to have photos in a gallery style

Markdown used :

![Image 1](cat01.jpg) ![Image 2](cat02.jpg)

SaberD commented 2 years ago

I got it to work. There are basically two rules:

  1. The image has to be in the same folder as the post index.md file
  2. The image link has to be on its own line separated by one line from the rest of the text above and below

this wont work:

lorem ipsum dolor sit amet, consectetur adipisicing elit
![image](image.jpg)
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

but this works:

lorem ipsum dolor sit amet, consectetur adipisicing elit

![image](image.jpg)

sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.