1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

Add missing package descriptions for GoDoc

This commit is contained in:
Frédéric Guillot 2018-10-08 17:24:47 -07:00
parent 11dfcdd3d6
commit 9dc38a0803
30 changed files with 282 additions and 2 deletions

10
reader/atom/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package atom provides an Atom feed parser.
*/
package atom // import "miniflux.app/reader/atom"

10
reader/date/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package date provides a feed date parser.
*/
package date // import "miniflux.app/reader/date"

View file

@ -4,7 +4,7 @@
/*
Package encoding handles workarounds to deal with encoding edge cases found into the wild.
Package encoding handles workarounds to deal with encoding edge cases found into feeds.
*/
package encoding // import "miniflux.app/reader/encoding"

10
reader/feed/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package feed provides a generic feed parser that abstracts all different formats.
*/
package feed // import "miniflux.app/reader/feed"

10
reader/icon/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package icon provides all the logic to download website icons.
*/
package icon // import "miniflux.app/reader/icon"

10
reader/json/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package json provides a JSON feed parser.
*/
package json // import "miniflux.app/reader/json"

10
reader/opml/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package opml provides an OPML parser and writer.
*/
package opml // import "miniflux.app/reader/opml"

10
reader/processor/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package processor handles the logic to manipulate feed contents.
*/
package processor // import "miniflux.app/reader/processor"

10
reader/rdf/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package rdf provides a RDF feed parser.
*/
package rdf // import "miniflux.app/reader/rdf"

10
reader/readability/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package readability implements a web page scraper that returns only relevant content.
*/
package readability // import "miniflux.app/reader/readability"

10
reader/rewrite/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package rewrite provides functions to manipulate feed contents.
*/
package rewrite // import "miniflux.app/reader/rewrite"

10
reader/rss/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package rss provides a RSS feed parser.
*/
package rss // import "miniflux.app/reader/rss"

10
reader/sanitizer/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package sanitizer implements a HTML sanitizer that removes unsafe elements.
*/
package sanitizer // import "miniflux.app/reader/sanitizer"

10
reader/scraper/doc.go Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package scraper implements a web page crawler.
*/
package scraper // import "miniflux.app/reader/scraper"

View file

@ -0,0 +1,10 @@
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
/*
Package subscription implements the logic to find subscriptions on a website.
*/
package subscription // import "miniflux.app/reader/subscription"