mirror of https://github.com/luizdepra/hugo-coder.git

Andreas Deininger
16.59.2025 9550af4ab09ff9dd44907022c9aa0bdce12b9094
Example site: fix warning with latest hugo version (#947)

When running example site with latest hugo version `0.140.0`, a warning
is shown:

```
WARN Raw HTML omitted while rendering "/home/andreas/hugo-coder/exampleSite/content/posts/emoji-support.md"; see https://gohugo.io/getting-started/configuration-markup/#rendererunsafe
```

This PR fixes this issue.
1 files modified
4 ■■■■ changed files
exampleSite/hugo.toml 4 ●●●● patch | view | raw | blame | history
exampleSite/hugo.toml
@@ -13,8 +13,12 @@
# Enable Disqus comments
# shortname = "yourdiscussshortname"
[markup]
[markup.highlight]
noClasses = false
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[params]
author = "John Doe"