mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
28 lines
515 B
Text
28 lines
515 B
Text
|
# Test the hugo command.
|
||
|
|
||
|
# See https://github.com/rogpeppe/go-internal/issues/228
|
||
|
[windows] skip
|
||
|
|
||
|
hugo -w &
|
||
|
|
||
|
sleep 3
|
||
|
grep 'P1start' public/p1/index.html
|
||
|
|
||
|
replace content/p1.md 'P1start' 'P1end'
|
||
|
sleep 2
|
||
|
grep 'P1end' public/p1/index.html
|
||
|
|
||
|
stop
|
||
|
|
||
|
-- hugo.toml --
|
||
|
baseURL = "http://example.org/"
|
||
|
disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
|
||
|
-- layouts/index.html --
|
||
|
Home.
|
||
|
-- layouts/_default/single.html --
|
||
|
Title: {{ .Title }}| {{ .Content }}
|
||
|
-- content/p1.md --
|
||
|
---
|
||
|
title: "P1"
|
||
|
---
|
||
|
P1start
|