forestryio / hugo-theme-novela

Novela, the simplest way to start publishing with Hugo and Forestry.
https://hugo-novela-forestry.netlify.app/
MIT License
361 stars 192 forks source link

Images with space between the name is not loading #34

Closed maharjanmilan closed 4 years ago

maharjanmilan commented 4 years ago

When I insert a image in a post with spaces in between the name, it is not loading. I use forestry to add the post.

DirtyF commented 4 years ago

This looks like a global issue, Not specific to this theme.

@regisphilibert Do you know of a workaround that could make the theme more bulletproof or shall we just mark this as won't fix?

regisphilibert commented 4 years ago

@maharjanmilan This is a Goldmark issue (default since 0.60). If you're not specific about your markdown renderer, you can switch to Blackfriday and all will be good.

# config.yaml
markup:
  defaultMarkdownHandler: blackfriday

See: https://gohugo.io/getting-started/configuration-markup/

DirtyF commented 4 years ago

Thanks @regisphilibert TIL!