Skip to content

Commit fb2377e

Browse files
authored
Merge pull request #271 from jakutis/readme-use-https
README: make links use https: instead of http: protocol
2 parents 340f0d2 + 4284826 commit fb2377e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Feedparser is for parsing RSS, Atom, and RDF feeds in node.js.
1212

1313
It has a couple features you don't usually see in other feed parsers:
1414

15-
1. It resolves relative URLs (such as those seen in Tim Bray's "ongoing" [feed](http://www.tbray.org/ongoing/ongoing.atom)).
15+
1. It resolves relative URLs (such as those seen in Tim Bray's "ongoing" [feed](https://www.tbray.org/ongoing/ongoing.atom)).
1616
2. It properly handles XML namespaces (including those in unusual feeds
1717
that define a non-default namespace for the main feed elements).
1818

@@ -105,7 +105,7 @@ See the [`examples`](examples/) directory.
105105

106106
### Transform Stream
107107

108-
Feedparser is a [transform stream](http://nodejs.org/api/stream.html#stream_class_stream_transform) operating in "object mode": XML in -> Javascript objects out.
108+
Feedparser is a [transform stream](https://nodejs.org/api/stream.html#stream_class_stream_transform) operating in "object mode": XML in -> Javascript objects out.
109109
Each readable chunk is an object representing an article in the feed.
110110

111111
### Events Emitted
@@ -182,7 +182,7 @@ e.g., `meta['atom:subtitle']['#']`.
182182
* comments (a link to the article's comments section)
183183
* image (an Object containing `url` and `title` properties)
184184
* categories (an Array of Strings)
185-
* source (an Object containing `url` and `title` properties pointing to the original source for an article; see the [RSS Spec](http://cyber.law.harvard.edu/rss/rss.html#ltsourcegtSubelementOfLtitemgt) for an explanation of this element)
185+
* source (an Object containing `url` and `title` properties pointing to the original source for an article; see the [RSS Spec](https://cyber.law.harvard.edu/rss/rss.html#ltsourcegtSubelementOfLtitemgt) for an explanation of this element)
186186
* enclosures (an Array of Objects, each representing a podcast or other enclosure and having a `url` property and possibly `type` and `length` properties)
187187
* meta (an Object containing all the feed meta properties; especially handy when using the EventEmitter interface to listen to `article` emissions)
188188

0 commit comments

Comments
 (0)