mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
20 lines
527 B
Go
20 lines
527 B
Go
|
package transform
|
||
|
|
||
|
import "bytes"
|
||
|
|
||
|
func LiveReloadInject(content []byte) []byte {
|
||
|
match := []byte("</body>")
|
||
|
replace := []byte(`<script>document.write('<script src="http://'
|
||
|
+ (location.host || 'localhost').split(':')[0]
|
||
|
+ ':1313/livereload.js?mindelay=10"></'
|
||
|
+ 'script>')</script></body>`)
|
||
|
newcontent := bytes.Replace(content, match, replace, -1)
|
||
|
|
||
|
if len(newcontent) == len(content) {
|
||
|
match := []byte("</BODY>")
|
||
|
newcontent = bytes.Replace(content, match, replace, -1)
|
||
|
}
|
||
|
|
||
|
return newcontent
|
||
|
}
|