package transform import ( "bytes" "github.com/spf13/viper" ) func LiveReloadInject(ct contentTransformer) { match := []byte("") port := viper.GetString("port") 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) }