config.toml 903 B

12345678910111213141516171819202122232425262728293031323334353637
  1. baseURL = "https://example.com/"
  2. languageCode = "en-us"
  3. title = "A Hugo theme for creating Reveal.js presentations"
  4. disableKinds = ["sitemap", "RSS"]
  5. theme = "."
  6. themesDir = "../"
  7. # uncomment for browsing at file:///
  8. # relativeURLs = true
  9. # uglyURLs = true
  10. [author]
  11. name = "Josh Dzielak"
  12. # currently only the unsafe mode for goldmark is supported
  13. [markup.goldmark.renderer]
  14. unsafe = true
  15. # choose between Hugo compile-time or Highlight.js
  16. # syntax highlighting for code inside of code fences
  17. [markup.highlight]
  18. codeFences = false # use highlight.js
  19. # codeFences = true # use hugo highlighting at compile time
  20. style = "tango" # set a style for hugo highlighting
  21. [outputFormats.Reveal]
  22. baseName = "index"
  23. mediaType = "text/html"
  24. isHTML = true
  25. [params.reveal_hugo]
  26. history = true
  27. # used in content/template-example
  28. [params.reveal_hugo.templates.grey]
  29. background = "#424242"
  30. transition = "convex"