2014-05-16 17:49:27 -04:00
|
|
|
package transform
|
|
|
|
|
2014-05-28 19:01:24 -04:00
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
)
|
2014-05-16 17:49:27 -04:00
|
|
|
|
2015-03-18 20:55:49 -04:00
|
|
|
func LiveReloadInject(ct contentTransformer) {
|
2014-05-16 17:49:27 -04:00
|
|
|
match := []byte("</body>")
|
2015-10-14 03:41:54 -04:00
|
|
|
replace := []byte(`<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>`)
|
2014-05-16 17:49:27 -04:00
|
|
|
|
2015-10-14 03:41:54 -04:00
|
|
|
newcontent := bytes.Replace(ct.Content(), match, replace, -1)
|
2015-03-18 20:55:49 -04:00
|
|
|
if len(newcontent) == len(ct.Content()) {
|
2014-05-16 17:49:27 -04:00
|
|
|
match := []byte("</BODY>")
|
2015-03-18 20:55:49 -04:00
|
|
|
newcontent = bytes.Replace(ct.Content(), match, replace, -1)
|
2014-05-16 17:49:27 -04:00
|
|
|
}
|
|
|
|
|
2015-03-18 20:55:49 -04:00
|
|
|
ct.Write(newcontent)
|
2014-05-16 17:49:27 -04:00
|
|
|
}
|