summaryrefslogtreecommitdiffstats
path: root/testscripts/commands/hugo.txt
AgeCommit message (Collapse)Author
2023-05-24Fix regression when loading config -e is empty or HUGO_ENV or ↵Bjørn Erik Pedersen
HUGO_ENVIRONMENT is set Fixes #11013
2023-05-24Fix regression with site.IsServer when not running a serverBjørn Erik Pedersen
Fixes #11006
2023-05-16Create a struct with all of Hugo's config optionsBjørn Erik Pedersen
Primary motivation is documentation, but it will also hopefully simplify the code. Also, * Lower case the default output format names; this is in line with the custom ones (map keys) and how it's treated all the places. This avoids doing `stringds.EqualFold` everywhere. Closes #10896 Closes #10620