Skip to content

Commit ec2db73

Browse files
Add inline comments explaining subtitle field additions
Added comments to clarify that the subtitle fields in fields.feed and fields.item support standard RSS/Atom subtitle elements, which are distinct from the itunes:subtitle fields in podcastFeed and podcastItem.
1 parent deae6f8 commit ec2db73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/fields.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fields.feed = [
88
['dc:title', 'title'],
99
['dc:type', 'type'],
1010
'title',
11-
'subtitle',
11+
'subtitle', // Added to support standard RSS/Atom subtitle elements (distinct from itunes:subtitle in podcastFeed)
1212
'description',
1313
'author',
1414
'pubDate',
@@ -36,7 +36,7 @@ fields.item = [
3636
['dc:source', 'source'],
3737
['dc:title', 'title'],
3838
'title',
39-
'subtitle',
39+
'subtitle', // Added to support standard RSS/Atom subtitle elements (distinct from itunes:subtitle in podcastItem)
4040
'link',
4141
'pubDate',
4242
'author',

0 commit comments

Comments
 (0)