config.toml 2.0 KB

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