config.toml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Configuration of Academic
  2. # Documentation: https://sourcethemes.com/academic/
  3. #
  4. # This file is formatted using TOML syntax - learn more at https://learnxinyminutes.com/docs/toml/
  5. # Each configuration section is defined by a name in square brackets (e.g. `[outputs]`).
  6. # Title of your site
  7. title = "Academic"
  8. # The URL of your site.
  9. # End your URL with a `/` trailing slash, e.g. `https://example.com/`.
  10. baseurl = "/"
  11. # Enter a copyright notice to display in the site footer.
  12. # To display a copyright symbol, type `©`. For current year, type `{year}`.
  13. copyright = ""
  14. # Enable analytics by entering your Google Analytics tracking ID
  15. googleAnalytics = ""
  16. ############################
  17. ## Advanced options below ##
  18. ############################
  19. # Name of Academic theme folder in `themes/`.
  20. theme = "academic"
  21. # Get last modified date for content from Git?
  22. enableGitInfo = false
  23. # Default language to use (if you setup multilingual support)
  24. defaultContentLanguage = "en"
  25. hasCJKLanguage = false # Set `true` for Chinese/Japanese/Korean languages.
  26. defaultContentLanguageInSubdir = false
  27. removePathAccents = true # Workaround for https://github.com/gohugoio/hugo/issues/5687
  28. paginate = 10 # Number of items per page in paginated lists.
  29. enableEmoji = true
  30. footnotereturnlinkcontents = "<sup>^</sup>"
  31. ignoreFiles = ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
  32. [outputs]
  33. home = [ "HTML", "RSS", "JSON" ]
  34. section = [ "HTML", "RSS" ]
  35. # Configure BlackFriday Markdown rendering.
  36. # See: https://gohugo.io/getting-started/configuration/#configure-blackfriday
  37. [blackfriday]
  38. hrefTargetBlank = true # `true` opens external links in a new tab. See https://github.com/gohugoio/hugo/issues/2424
  39. angledQuotes = false
  40. latexDashes = true
  41. extensions = ["backslashLineBreak"]
  42. [imaging]
  43. resampleFilter = "lanczos"
  44. quality = 90
  45. anchor = "smart" # Anchor for cropping. Options include Smart and Center.
  46. # Taxonomies.
  47. [taxonomies]
  48. tag = "tags"
  49. category = "categories"
  50. publication_type = "publication_types"
  51. author = "authors"