Output:Hello, Gophers! <nil>
invalid escape: <b style="font-size: 200%">hello</b> <nil>
Hello, Gophers! This symbol will be unescaped: = and this will be written in one line. <nil>
type Writer struct {
// Binary mode treats the writer's input as pure binary and processes end of// line bytes as binary data.
Binary bool// contains filtered or unexported fields
}
A Writer is a quoted-printable writer that implements io.WriteCloser.
Write encodes p using quoted-printable encoding and writes it to the
underlying io.Writer. It limits line length to 76 characters. The encoded
bytes are not necessarily flushed until the Writer is closed.