golines removes "escaped" slashes ```golang // bug.go package bug type Struct10 struct { Field2 int MyStruct any `json:"field" validate:"\\d+"` } ``` Output of `golines bug.go`: ```golang // bug.go package bug type Struct10 struct { Field2 int MyStruct any `json:"field" validate:"\d+"` } ``` Expected output (look at validate tag value): ```golang // bug.go package bug type Struct10 struct { Field2 int MyStruct any `json:"field" validate:"\\d+"` } ```