diff --git a/README.md b/README.md
index a7eedc7..d69b367 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,119 @@ Syndication (feed) generator library for golang.
Usage:
-```golang
+```go
-import "syndicate"
+import (
+ "fmt"
+ "time"
+ "github.com/jmoiron/syndicate"
+)
+
+now := time.Now()
+feed := &Feed{
+ Title: "jmoiron.net blog",
+ Link: &Link{Href: "http://jmoiron.net/blog"},
+ Description: "discussion about tech, footie, photos",
+ Author: &Author{"Jason Moiron", "jmoiron@jmoiron.net"},
+ Created: now,
+}
+
+feed.Items = []*Item{
+ &Item{
+ Title: "Limiting Concurrency in Go",
+ Link: &Link{Href: "http://jmoiron.net/blog/limiting-concurrency-in-go/"},
+ Description: "A discussion on controlled parallelism in golang",
+ Author: &Author{"Jason Moiron", "jmoiron@jmoiron.net"},
+ Created: now,
+ },
+ &Item{
+ Title: "Logic-less Template Redux",
+ Link: &Link{Href: "http://jmoiron.net/blog/logicless-template-redux/"},
+ Description: "More thoughts on logicless templates",
+ Created: now,
+ },
+ &Item{
+ Title: "Idiomatic Code Reuse in Go",
+ Link: &Link{Href: "http://jmoiron.net/blog/idiomatic-code-reuse-in-go/"},
+ Description: "How to use interfaces effectively",
+ Created: now,
+ },
+}
+
+atom, err := feed.ToAtom()
+rss, err := feed.ToRss()
+
+fmt.Println(atom, "\n", rss)
+
+```
+
+Outputs:
+
+```xml
+
+
+ jmoiron.net blog
+
+ http://jmoiron.net/blog
+ 2013-01-16T03:22:24-05:00
+ discussion about tech, footie, photos
+
+ Limiting Concurrency in Go
+
+ 0001-01-01T00:00:00Z
+ tag:jmoiron.net,2013-01-16:/blog/limiting-concurrency-in-go/
+ A discussion on controlled parallelism in golang
+
+ Jason Moiron
+ jmoiron@jmoiron.net
+
+
+
+ Logic-less Template Redux
+
+ 0001-01-01T00:00:00Z
+ tag:jmoiron.net,2013-01-16:/blog/logicless-template-redux/
+ More thoughts on logicless templates
+
+
+
+ Idiomatic Code Reuse in Go
+
+ 0001-01-01T00:00:00Z
+ tag:jmoiron.net,2013-01-16:/blog/idiomatic-code-reuse-in-go/
+ How to use interfaces <em>effectively</em>
+
+
+
+
+
+
+
+ jmoiron.net blog
+ http://jmoiron.net/blog
+ discussion about tech, footie, photos
+ jmoiron@jmoiron.net (Jason Moiron)
+ 2013-01-16T03:22:24-05:00
+ -
+ Limiting Concurrency in Go
+ http://jmoiron.net/blog/limiting-concurrency-in-go/
+ A discussion on controlled parallelism in golang
+ 2013-01-16T03:22:24-05:00
+
+ -
+ Logic-less Template Redux
+ http://jmoiron.net/blog/logicless-template-redux/
+ More thoughts on logicless templates
+ 2013-01-16T03:22:24-05:00
+
+ -
+ Idiomatic Code Reuse in Go
+ http://jmoiron.net/blog/idiomatic-code-reuse-in-go/
+ How to use interfaces <em>effectively</em>
+ 2013-01-16T03:22:24-05:00
+
+
+
```