zerostaticthemes/hugo-winston-theme

Using HTML in Post/Page Markdown

Closed this issue · 2 comments

In pages & posts in this theme, inline HTML isn't rendered on the page. This should be supported by Markdown, so I'm wondering if/how this theme is suppressing inline Markdown? Is there any way to disable this behavior?

You need to configure the markdown parser to render raw html. See this tutorial https://www.youtube.com/watch?v=igIXqfSxm4k

or add this to the config.toml

[markup]
  [markup.goldmark]
    [markup.goldmark.renderer]
      unsafe = true

I'll add this to the config in the next release

Fixed in 9edacfb