README 880 B

1234567891011121314151617181920212223
  1. This repository holds supplementary Go libraries for text processing, many involving Unicode.
  2. To submit changes to this repository, see http://golang.org/doc/contribute.html.
  3. To generate the tables in this repository (except for the encoding tables),
  4. run go generate from this directory. By default tables are generated for the
  5. Unicode version in core and the CLDR version defined in
  6. golang.org/x/text/unicode/cldr.
  7. Running go generate will as a side effect create a DATA subdirectory in this
  8. directory which holds all files that are used as a source for generating the
  9. tables. This directory will also serve as a cache.
  10. Run
  11. go test ./...
  12. from this directory to run all tests. Add the "-tags icu" flag to also run
  13. ICU conformance tests (if available). This requires that you have the correct
  14. ICU version installed on your system.
  15. TODO:
  16. - updating unversioned source files.