config.toml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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", "WebAppManifest" ]
  34. section = [ "HTML", "RSS" ]
  35. [mediaTypes."application/manifest+json"]
  36. suffixes = ["webmanifest"]
  37. [outputFormats.WebAppManifest]
  38. mediaType = "application/manifest+json"
  39. rel = "manifest"
  40. # Configure BlackFriday Markdown rendering.
  41. # See: https://gohugo.io/getting-started/configuration/#configure-blackfriday
  42. [blackfriday]
  43. hrefTargetBlank = true # `true` opens external links in a new tab. See https://github.com/gohugoio/hugo/issues/2424
  44. angledQuotes = false
  45. latexDashes = true
  46. extensions = ["backslashLineBreak"]
  47. [imaging]
  48. resampleFilter = "lanczos"
  49. quality = 90
  50. anchor = "smart" # Anchor for cropping. Options include Smart and Center.
  51. # Taxonomies.
  52. [taxonomies]
  53. tag = "tags"
  54. category = "categories"
  55. publication_type = "publication_types"
  56. author = "authors"