config.toml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. ############################
  15. ## Advanced options below ##
  16. ############################
  17. # Name of Academic theme folder in `themes/`.
  18. theme = "academic"
  19. # Get last modified date for content from Git?
  20. enableGitInfo = false
  21. # Default language to use (if you setup multilingual support)
  22. defaultContentLanguage = "en"
  23. hasCJKLanguage = false # Set `true` for Chinese/Japanese/Korean languages.
  24. defaultContentLanguageInSubdir = false
  25. removePathAccents = true # Workaround for https://github.com/gohugoio/hugo/issues/5687
  26. paginate = 10 # Number of items per page in paginated lists.
  27. enableEmoji = true
  28. footnotereturnlinkcontents = "<sup>^</sup>"
  29. ignoreFiles = ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
  30. [outputs]
  31. home = [ "HTML", "RSS", "JSON", "WebAppManifest" ]
  32. section = [ "HTML", "RSS" ]
  33. [mediaTypes."application/manifest+json"]
  34. suffixes = ["webmanifest"]
  35. [outputFormats.WebAppManifest]
  36. mediaType = "application/manifest+json"
  37. rel = "manifest"
  38. # Configure BlackFriday Markdown rendering.
  39. # See: https://gohugo.io/getting-started/configuration/#configure-blackfriday
  40. [blackfriday]
  41. hrefTargetBlank = true # `true` opens external links in a new tab. See https://github.com/gohugoio/hugo/issues/2424
  42. angledQuotes = false
  43. latexDashes = true
  44. extensions = ["backslashLineBreak"]
  45. [imaging]
  46. resampleFilter = "lanczos"
  47. quality = 90
  48. anchor = "smart" # Anchor for cropping. Options include Smart and Center.
  49. # Taxonomies.
  50. [taxonomies]
  51. tag = "tags"
  52. category = "categories"
  53. publication_type = "publication_types"
  54. author = "authors"