diff --git a/transform/livereloadinject/livereloadinject.go b/transform/livereloadinject/livereloadinject.go index 32ed55f63..d57ba4d24 100644 --- a/transform/livereloadinject/livereloadinject.go +++ b/transform/livereloadinject/livereloadinject.go @@ -24,16 +24,24 @@ import ( "github.com/gohugoio/hugo/transform" ) +const warnMessage = `"head" or "body" tag is required in html to append livereload script. ` + + "As a fallback, Hugo injects it somewhere but it might not work properly." + +var warnScript = fmt.Sprintf(``, warnMessage) + type tag struct { markup []byte appendScript bool + warnRequired bool } var tags = []tag{ - {markup: []byte(""), appendScript: true}, - {markup: []byte(""), appendScript: true}, + {markup: []byte("")}, {markup: []byte("")}, + {markup: []byte("`, html.EscapeString(src))) i := idx if match.appendScript { - i += len(match.markup) + i += bytes.Index(b[i:], []byte(">")) + 1 + } + + if match.warnRequired { + script = append(script, []byte(warnScript)...) } c = append(c[:i], append(script, c[i:]...)...) diff --git a/transform/livereloadinject/livereloadinject_test.go b/transform/livereloadinject/livereloadinject_test.go index b2ec4483a..d5cee79f8 100644 --- a/transform/livereloadinject/livereloadinject_test.go +++ b/transform/livereloadinject/livereloadinject_test.go @@ -58,7 +58,15 @@ func TestLiveReloadInject(t *testing.T) { c.Assert(apply("foo"), qt.Equals, "foo"+expectBase+"") }) + c.Run("Html upper", func(c *qt.C) { + c.Assert(apply("foo"), qt.Equals, ""+expectBase+warnScript+"foo") + }) + + c.Run("Html upper with attr", func(c *qt.C) { + c.Assert(apply(`foo`), qt.Equals, ``+expectBase+warnScript+"foo") + }) + c.Run("No match", func(c *qt.C) { - c.Assert(apply("

No match

"), qt.Equals, "

No match

") + c.Assert(apply("

No match

"), qt.Equals, "

No match

"+expectBase+warnScript) }) }