From e01f292bcb2634c2a7701d6f85895e3ac03a8fcf Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Tue, 5 May 2015 15:09:06 +0200 Subject: [PATCH] add link to GoDoc API and doc.go file with package description --- README.md | 1 + doc.go | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 doc.go diff --git a/README.md b/README.md index 968a6d2..1ea662d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ html-query: A fluent and functional approach to querying HTML DOM ================================================================= +[![GoDoc](https://godoc.org/h12.me/html-query?status.svg)](https://godoc.org/h12.me/html-query) html-query is a Go package that provides a fluent and functional interface for querying HTML DOM. It is based on [golang.org/x/net/html](https://godoc.org/golang.org/x/net/html). diff --git a/doc.go b/doc.go new file mode 100644 index 0000000..675d863 --- /dev/null +++ b/doc.go @@ -0,0 +1,9 @@ +// Copyright 2015, Hǎiliàng Wáng. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package query provides a fluent and functional interface +for querying HTML DOM using Go. It is based on golang.org/x/net/html. +*/ +package query