hugo.toml 984 B

123456789101112131415161718192021222324252627
  1. baseURL = 'https://kyleguy.rome7.com/'
  2. languageCode = 'en-us'
  3. title = "Kyle's Website"
  4. theme = 'ananke'
  5. # this is a workaround for [Issue 11556](https://github.com/gohugoio/hugo/issues/11556)
  6. [module]
  7. [[module.mounts]]
  8. source = "content"
  9. target = "content"
  10. [[module.mounts]]
  11. source = "/mnt/external/projects/kyleguy/README.md"
  12. target = "content/posts/kyleguy-inception.md"
  13. lang = "en"
  14. # This is probably not needed
  15. [[module.mounts]]
  16. source = "/mnt/external/projects/kyleguy/images"
  17. target = "content/posts/kyleguy-inception/images"
  18. lang = "en"
  19. # In my README.md I use HTML - this should probably be in a config file for just this page but I do not know how to do it
  20. # Hugo uses Goldmark to render Markdown, Goldmark is worried about HTML being unsafe
  21. [markup]
  22. [markup.goldmark]
  23. [markup.goldmark.renderer]
  24. # this is a weird way to say this, but to enable html in markdown you say: I want it to be unsafe (true)
  25. unsafe = true