diff options
Diffstat (limited to 'content/normalization.article')
-rw-r--r-- | content/normalization.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/normalization.article b/content/normalization.article index 0076d62..e984148 100644 --- a/content/normalization.article +++ b/content/normalization.article @@ -1,7 +1,7 @@ # Text normalization in Go 26 Nov 2013 Tags: strings, bytes, runes, characters -Summary: An earlier [post](https://blog.golang.org/strings) talked about strings, bytes and characters in Go. I've been working on various packages for multilingual text processing for the go.text repository. Several of these packages deserve a separate blog post, but today I want to focus on [go.text/unicode/norm](https://godoc.org/code.google.com/p/go.text/unicode/norm), which handles normalization, a topic touched in the [strings article](https://blog.golang.org/strings) and the subject of this post. Normalization works at a higher level of abstraction than raw bytes. +Summary: How and why to normalize UTF-8 text in Go. Marcel van Lohuizen |