32 lines
874 B
TOML
32 lines
874 B
TOML
baseURL = "http://example.org/"
|
|
languageCode = "en-us"
|
|
title = "My New Hugo Site"
|
|
# Want to use this but the default code theme is fucking hideous:
|
|
#theme = "indigo"
|
|
#theme = "zen"
|
|
# This one *does* use 'highlight' below:
|
|
theme = "nofancy"
|
|
|
|
[params]
|
|
# See themes/nofancy/static/highlight/styles for available options
|
|
highlight="tomorrow"
|
|
# Controls what items are listed in the top nav menu
|
|
# "none", or "categories"
|
|
# If you have too many categories to fit in the top nav menu, set this to "none"
|
|
topmenu="categories"
|
|
|
|
# none of this is taking any effect despite
|
|
# https://gohugo.io/getting-started/configuration-markup#highlight:
|
|
|
|
#[markup]
|
|
# [markup.highlight]
|
|
# codeFences = true
|
|
# guessSyntax = false
|
|
# hl_Lines = ""
|
|
# lineNoStart = 1
|
|
# lineNos = false
|
|
# lineNumbersInTable = true
|
|
# noClasses = true
|
|
# style = "monokai"
|
|
# tabWidth = 4
|