config.toml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 `©`.
  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 = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
  33. preserveTaxonomyNames = true
  34. [outputs]
  35. home = [ "HTML", "CSS", "RSS", "JSON" ]
  36. section = [ "HTML", "RSS" ]
  37. # Configure BlackFriday Markdown rendering.
  38. # See: https://gohugo.io/getting-started/configuration/#configure-blackfriday
  39. [blackfriday]
  40. hrefTargetBlank = true # `true` opens external links in a new tab. See https://github.com/gohugoio/hugo/issues/2424
  41. angledQuotes = false
  42. latexDashes = true
  43. extensions = ["backslashLineBreak"]
  44. # Taxonomies.
  45. [taxonomies]
  46. tag = "tags"
  47. category = "categories"
  48. publication_type = "publication_types"
  49. author = "authors"