hugo/testscripts/commands/hugo_configprod.txt

19 lines
402 B
Plaintext

# Test the hugo command.
hugo
grep 'myparam: §' public/index.html
-- hugo.toml --
baseURL = "http://example.org/"
disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
-- layouts/index.html --
myparam: {{ site.Params.myparam }}§
-- layouts/_default/single.html --
Title: {{ .Title }}
-- config/development/params.toml --
myparam = "dev"
-- content/p1.md --
---
title: "P1"
---