mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-07 00:26:00 +03:00
[FeedExpander] Fix typos
parent
212663a15c
commit
d66dce2f0e
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
---------|-----|-------|-----------|--------|--------
|
||||
|
|
Loading…
Add table
Reference in a new issue