ref: 5838420aa1f5dfb6aa73479caa60467cc27dee82
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) }