HOW TO ENABLE HTML CODE IN MARKDOWN FILES

Trick is very simple, if you know where to dig. Just find config.toml file of your Hugo theme and add following section.
[markup]
  [markup.goldmark]
    [markup.goldmark.renderer]
      unsafe = true  # Enable html code inside markdown files
This code will enable “unsafe HTML” code inside markdown *.md files.
