Problem/Motivation
Standard RSS feed can include multiple tags, for example, PubMed Feed
Currently only one is imported.
Steps to reproduce
Create new RSS feed, add text field to a content type and map import from Author Name.

You can see that only first value is imported. It might be useful to import all authors in a predefined format. Proposed format would be comma separated, for example,
Markus Eyting
Min Xie
Felix Michalik
will generate Markus Eyting, Min Xie, Felix Michalik
Proposed resolution
Add option to import "All Authors" to default configuration for RSS feed
| Comment | File | Size | Author |
|---|---|---|---|
| rss-author-name.png | 41.14 KB | irinaz |
Issue fork feeds-3519989
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
megachrizI've added a source called 'authors'. It returns an array. If you want to format this as a comma-seperated string, use the Feeds Tamper plugin "Implode".
Comment #5
irinaz commentedI tested code using DrupalPod extension, added new field text field "all authors" with unlimited values and another field with one value.
First field is imported correctly, second generates correct warning
" All authors one line (field_all_authors_one_line): All authors one line: this field cannot hold more than 1 values.
Please check your mappings. "
Marking RTBC
Comment #6
irinaz commentedTested on Pubmed Import, works as expected
Comment #8
megachrizThanks for testing! I merged the code.