From 8c2174d456dfff7ec3834af71a36c4e01074ba70 Mon Sep 17 00:00:00 2001 From: Thiago Avelino Date: Sun, 6 Jul 2014 12:50:34 -0300 Subject: [PATCH] rename section parser to text programming --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c56914db..e785237c 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A curated list of awesome Go frameworks, libraries and software. Inspired by [aw - [Database](#database) - [Database Drivers](#database-drivers) - [Imagery](#imagery) - - [Parsers](#parsers) + - [Text Processing](#text-processing) - [Testing](#testing) - [Audio](#audio) - [Resources](#resources) @@ -91,14 +91,18 @@ A curated list of awesome Go frameworks, libraries and software. Inspired by [aw * [resize](https://github.com/nfnt/resize) - Image resizing for the Go with common interpolation methods. -## Parsers +## Text Processing -* [go-pkg-xmlx](https://github.com/jteeuwen/go-pkg-xmlx) - Extension to the standard Go XML package. Maintains a node tree that allows forward/backwards browsing and exposes some simple single/multi-node search functions. -* [go-pkg-rss](https://github.com/jteeuwen/go-pkg-rss) - This package reads RSS and Atom feeds and provides a caching mechanism that adheres to the feed specs. +* Specific Formats + * [yaml](https://bitbucket.org/zombiezen/yaml) - Implements a YAML 1.2 parser in Go. + * [go-pkg-xmlx](https://github.com/jteeuwen/go-pkg-xmlx) - Extension to the standard Go XML package. Maintains a node tree that allows forward/backwards browsing and exposes some simple single/multi-node search functions. + * [go-pkg-rss](https://github.com/jteeuwen/go-pkg-rss) - This package reads RSS and Atom feeds and provides a caching mechanism that adheres to the feed specs. ## Testing +*Libraries for testing codebases and generating test data.* + * [gocheck](http://labix.org/gocheck) - A more advanced testing framework alternative to gotest. * [GoSpec](https://github.com/orfjackal/gospec) - BDD-style testing framework for the Go programming language. * [gospecify](https://github.com/stesla/gospecify) - This provides a BDD syntax for testing your Go code. It should be familiar to anybody who has used libraries such as rspec.