shithub: hugo

ref: 5cf1475ecd72a2f17c7ec48ccf499b2e3a5f49b4
dir: /transform/livereloadinject.go/

View raw version
package transform

import (
	"bytes"
)

func LiveReloadInject(ct contentTransformer) {
	match := []byte("</body>")
	replace := []byte(`<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>`)

	newcontent := bytes.Replace(ct.Content(), match, replace, -1)
	if len(newcontent) == len(ct.Content()) {
		match := []byte("</BODY>")
		newcontent = bytes.Replace(ct.Content(), match, replace, -1)
	}

	ct.Write(newcontent)
}