mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-29 22:29:56 +02:00
Proper integration of live reload with automatic injection
This commit is contained in:
19
transform/livereloadinject.go
Normal file
19
transform/livereloadinject.go
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user