config.toml 726 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. baseURL = "http://example.org"
  2. title = "Hugo Zdoc Theme"
  3. theme = "zdoc"
  4. defaultContentLanguage = "en"
  5. defaultContentLanguageInSubdir = false
  6. hasCJKLanguage = false
  7. copyright = "©{year}, All Rights Reserved"
  8. timeout = 10000
  9. enableEmoji = true
  10. paginate = 13
  11. rssLimit = 100
  12. googleAnalytics = ""
  13. disableKinds = ["taxonomyTerm"]
  14. [markup]
  15. [markup.goldmark]
  16. [markup.goldmark.renderer]
  17. hardWraps = true
  18. unsafe = true
  19. xHTML = true
  20. [markup.highlight]
  21. codeFences = true
  22. lineNos = true
  23. lineNumbersInTable = true
  24. noClasses = false
  25. [markup.tableOfContents]
  26. endLevel = 4
  27. ordered = false
  28. startLevel = 2
  29. [outputs]
  30. home = ["HTML", "RSS", "JSON"]
  31. [taxonomies]
  32. tag = "tags"