ref: e445c35d6a0c7f5fc2f90f31226cd1d46e048bbc
dir: /transform/livereloadinject.go/
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) }