Browse Source

Don't touch spaces at all

Volodymyr Tkach 2 years ago
parent
commit
960cf530e6
2 changed files with 7 additions and 1 deletions
  1. 1 1
      utils/http/helpers/helpers.go
  2. 6 0
      utils/http/helpers/helpers_test.go

+ 1 - 1
utils/http/helpers/helpers.go

@@ -22,7 +22,7 @@ import (
 // func SessionStart(w http.ResponseWriter, r *http.Request) (*session.Session, error)
 // func SessionStart(w http.ResponseWriter, r *http.Request) (*session.Session, error)
 // func SetLanguageCookie(w http.ResponseWriter, r *http.Request) error
 // func SetLanguageCookie(w http.ResponseWriter, r *http.Request) error
 
 
-var mHtml = regexp.MustCompile(`>[\n\t\r\s]+<`)
+var mHtml = regexp.MustCompile(`>[\n\t\r]+<`)
 var mHtmlLeft = regexp.MustCompile(`>[\n\t\r]+`)
 var mHtmlLeft = regexp.MustCompile(`>[\n\t\r]+`)
 var mHtmlRight = regexp.MustCompile(`[\n\t\r]+<`)
 var mHtmlRight = regexp.MustCompile(`[\n\t\r]+<`)
 
 

+ 6 - 0
utils/http/helpers/helpers_test.go

@@ -28,6 +28,12 @@ var _ = Describe("helpers", func() {
 					<a href="#">Link 1</a>, <a href="#">Link 2</a>
 					<a href="#">Link 1</a>, <a href="#">Link 2</a>
 				</div>
 				</div>
 			`)).To(Equal(`<div><a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
 			`)).To(Equal(`<div><a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
+
+			Expect(helpers.MinifyHtmlCode(`
+				<div>
+					<b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a>
+				</div>
+			`)).To(Equal(`<div><b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
 		})
 		})
 	})
 	})
 })
 })