• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.appveyor.ymlH A D19-Dec-2018278

.travis.ymlH A D19-Dec-201858

LICENSEH A D19-Dec-201811.1 KiB

README.mdH A D19-Dec-20181.2 KiB

ascii.goH A D19-Dec-20181.1 KiB

ascii_test.goH A D19-Dec-20181.1 KiB

charmap.goH A D19-Dec-20185.5 KiB

common_test.goH A D19-Dec-20181.8 KiB

doc.goH A D19-Dec-2018720

ebcdic.goH A D19-Dec-20185.1 KiB

ebcdic_test.goH A D19-Dec-20183.1 KiB

go.modH A D19-Dec-201877

go.sumH A D19-Dec-2018153

latin1.goH A D19-Dec-20181.1 KiB

latin1_test.goH A D19-Dec-2018863

latin5.goH A D19-Dec-2018899

latin5_test.goH A D19-Dec-20181 KiB

utf8.goH A D19-Dec-20181.2 KiB

utf8_test.goH A D19-Dec-2018856

README.md

1## encoding
2
3[![Linux Status](https://img.shields.io/travis/gdamore/encoding.svg?label=linux)](https://travis-ci.org/gdamore/encoding)
4[![Windows Status](https://img.shields.io/appveyor/ci/gdamore/encoding.svg?label=windows)](https://ci.appveyor.com/project/gdamore/encoding)
5[![Apache License](https://img.shields.io/badge/license-APACHE2-blue.svg)](https://github.com/gdamore/encoding/blob/master/LICENSE)
6[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/gdamore/encoding)
7[![Go Report Card](http://goreportcard.com/badge/gdamore/encoding)](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.
20