package transform import ( "bytes" ) func LiveReloadInject(ct contentTransformer) { match := []byte("") replace := []byte(``) newcontent := bytes.Replace(ct.Content(), match, replace, -1) if len(newcontent) == len(ct.Content()) { match := []byte("") newcontent = bytes.Replace(ct.Content(), match, replace, -1) } ct.Write(newcontent) }