...
1## encoding
2
3[](https://travis-ci.org/gdamore/encoding)
4[](https://ci.appveyor.com/project/gdamore/encoding)
5[](https://github.com/gdamore/encoding/blob/master/LICENSE)
6[](https://godoc.org/github.com/gdamore/encoding)
7[](http://goreportcard.com/report/gdamore/encoding)
8
9Package encoding provides a number of encodings that are missing from the
10standard Go [encoding]("https://godoc.org/golang.org/x/text/encoding") package.
11
12We hope that we can contribute these to the standard Go library someday. It
13turns out that some of these are useful for dealing with I/O streams coming
14from non-UTF friendly sources.
15
16The UTF8 Encoder is also useful for situations where valid UTF-8 might be
17carried in streams that contain non-valid UTF; in particular I use it for
18helping me cope with terminals that embed escape sequences in otherwise
19valid UTF-8.
View as plain text