From d66dce2f0e5a3cbd681dae62c6af44433f35f41d Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Sun, 4 Sep 2016 14:54:16 +0200 Subject: [PATCH] [FeedExpander] Fix typos --- FeedExpander.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/FeedExpander.md b/FeedExpander.md index 7c37744..e4117ec 100644 --- a/FeedExpander.md +++ b/FeedExpander.md @@ -11,7 +11,7 @@ To create a new Bridge extending `FeedExpander` you must implement all required Find a [template](#template) at the end of this file. -**Notice:** For a standard RSS 2.0 feed only `collectData` and [`parseItem`](#the-parseItem-function) need to be implemented. `collectData` should call `$this->collectExpandableDatas('your URI here');` to automatically load feed items and header data (will subsequently call `parseItem` for each item found in the feed). +**Notice:** For a standard feed only `collectData` and [`parseItem`](#the-parseItem-function) need to be implemented. `collectData` should call `$this->collectExpandableDatas('your URI here');` to automatically load feed items and header data (will subsequently call `parseItem` for each item in the feed). ## The `parseItem` function @@ -38,12 +38,12 @@ The `FeedExpander` already provides a set of functions to parse RSS or ATOM item Function | Description ---------|------------ -`parseATOMItem` | Parses an item from a ATOM 1.0 feed -`parseRSS_0_9_1_Item` | Parses an item from an RSS 0.91 feed -`parseRSS_1_0_Item` | Parses an item from an RSS 1.0 feed -`parseRSS_2_0_Item` | Parses an item from an RSS 2.0 feed +`parseATOMItem` | Parses an ATOM 1.0 feed item +`parseRSS_0_9_1_Item` | Parses an RSS 0.91 feed item +`parseRSS_1_0_Item` | Parses an RSS 1.0 feed item +`parseRSS_2_0_Item` | Parses an RSS 2.0 feed item -These functions will attempt to load as many data as possible from a feed item. However not all functions return all item data. Find a list off supported item tags and paramters in the following list: +In the following list you'll find the feed tags assigned to the the **RSS-Bridge** item keys: Function | uri | title | timestamp | author | content ---------|-----|-------|-----------|--------|--------