config.toml 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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", "SearchIndex"]
  31. [outputFormats]
  32. [outputFormats.SearchIndex]
  33. mediaType = "application/json"
  34. baseName = "index"
  35. isPlainText = true
  36. notAlternative = true
  37. [taxonomies]
  38. tag = "tags"