| 123456789101112131415161718192021222324252627 |
- baseURL = 'https://kyleguy.rome7.com/'
- languageCode = 'en-us'
- title = "Kyle's Website"
- theme = 'ananke'
- # this is a workaround for [Issue 11556](https://github.com/gohugoio/hugo/issues/11556)
- [module]
- [[module.mounts]]
- source = "content"
- target = "content"
- [[module.mounts]]
- source = "/mnt/external/projects/kyleguy/README.md"
- target = "content/posts/kyleguy-inception.md"
- lang = "en"
- # This is probably not needed
- [[module.mounts]]
- source = "/mnt/external/projects/kyleguy/images"
- target = "content/posts/kyleguy-inception/images"
- lang = "en"
- # 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
- # Hugo uses Goldmark to render Markdown, Goldmark is worried about HTML being unsafe
- [markup]
- [markup.goldmark]
- [markup.goldmark.renderer]
- # this is a weird way to say this, but to enable html in markdown you say: I want it to be unsafe (true)
- unsafe = true
|