func TestSanitize(t *testing.T) {
policy := bluemonday.UGCPolicy()
input := "Hello, world 
!"
output := policy.Sanitize(input)
fmt.Printf("Input: %s\nOutput: %s\n", input, output)
}
the result should be:
Input: Hello, world 
!
Output: Hello, world 
!
but actually it was converted to:
Input: Hello, world 
!
Output: Hello,
world 
!
Which means the has been directly converted to "\n".
So It means I cant write in any method.
the result should be:
but actually it was converted to:
Which means the
has been directly converted to "\n".So It means I cant write
in any method.