From 8d08afd360b29647c7c4e24c4326f1090572a3d9 Mon Sep 17 00:00:00 2001 From: Duke Date: Thu, 23 Jan 2014 23:03:58 -0200 Subject: [PATCH 1/3] Update README --- README | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README b/README index 525b7e3..2bcdc35 100644 --- a/README +++ b/README @@ -1,6 +1,4 @@ -================================================================================ - RSS -================================================================================ +# RSS This package allows us to fetch Rss and Atom feeds from the internet. They are parsed into an object tree which is a hybrid of both the RSS and Atom @@ -30,15 +28,12 @@ either a new channel or a new item is found that previously did not exist. This allows you to easily monitor a feed for changes. See src/feed_test.go for an example of how this works. -================================================================================ - DEPENDENCIES -================================================================================ +## DEPENDENCIES - github.com/jteeuwen/go-pkg-xmlx +[github.com/jteeuwen/go-pkg-xmlx](http://github.com/jteeuwen/go-pkg-xmlx) -================================================================================ - USAGE -================================================================================ +## USAGE - An idiomatic example program can be found in example.go. + +An idiomatic example program can be found in example.go. From b10f4eab9181c6076aca0a00dec92dae6dda6ce1 Mon Sep 17 00:00:00 2001 From: Duke Date: Thu, 23 Jan 2014 23:05:15 -0200 Subject: [PATCH 2/3] Rename README to README.md --- README => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README => README.md (100%) diff --git a/README b/README.md similarity index 100% rename from README rename to README.md From 31eb9ba3762176ecb9e0468acec66df100773a62 Mon Sep 17 00:00:00 2001 From: Duke Date: Thu, 23 Jan 2014 23:07:07 -0200 Subject: [PATCH 3/3] Added link to example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bcdc35..5d4fd7d 100644 --- a/README.md +++ b/README.md @@ -35,5 +35,5 @@ an example of how this works. ## USAGE -An idiomatic example program can be found in example.go. +An idiomatic example program can be found in [testdata/example.go](https://github.com/jteeuwen/go-pkg-rss/blob/master/testdata/example.go).