config.yaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Configuration of Hugo
  2. # Guide: https://wowchemy.com/docs/getting-started/
  3. # Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings
  4. # This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
  5. title: 'My Project' # Website name
  6. baseurl: '' # Website URL
  7. copyright: '' # Footer text, e.g. '© {year} Me'
  8. ############################
  9. ## LANGUAGE
  10. ############################
  11. defaultContentLanguage: en
  12. hasCJKLanguage: false
  13. defaultContentLanguageInSubdir: false
  14. removePathAccents: true
  15. ############################
  16. ## MODULES
  17. ############################
  18. module:
  19. imports:
  20. - path: github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms
  21. - path: github.com/wowchemy/wowchemy-hugo-modules/wowchemy
  22. ############################
  23. ## ADVANCED
  24. ############################
  25. enableGitInfo: false
  26. summaryLength: 30
  27. paginate: 10
  28. enableEmoji: true
  29. enableRobotsTXT: true
  30. footnotereturnlinkcontents: <sup>^</sup>
  31. ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$]
  32. permalinks:
  33. authors: '/author/:slug/'
  34. tags: '/tag/:slug/'
  35. categories: '/category/:slug/'
  36. disableAliases: true
  37. outputs:
  38. home: [HTML, RSS, JSON, WebAppManifest, headers, redirects]
  39. section: [HTML, RSS]
  40. markup:
  41. defaultMarkdownHandler: goldmark
  42. goldmark:
  43. renderer:
  44. unsafe: true
  45. highlight:
  46. codeFences: false
  47. tableOfContents:
  48. startLevel: 2
  49. endLevel: 3
  50. imaging:
  51. resampleFilter: lanczos
  52. quality: 75
  53. anchor: smart
  54. timeout: 600000
  55. taxonomies:
  56. tag: tags
  57. category: categories
  58. author: authors
  59. related:
  60. threshold: 80
  61. includeNewer: true
  62. toLower: true
  63. indices:
  64. - name: tags
  65. weight: 100
  66. - name: categories
  67. weight: 70