We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a921962 commit adeb6a2Copy full SHA for adeb6a2
index.js
@@ -38,7 +38,8 @@ var parseRSS2 = function(xmlObj, callback) {
38
})
39
if (item.description) {
40
entry.content = item.description[0];
41
- entry.contentSnippet = Entities.decode(stripHtml(entry.content));
+ entry.contentSnippet = entry.content;
42
+ //entry.contentSnippet = Entities.decode(stripHtml(entry.content));
43
}
44
if (item.guid) {
45
entry.guid = item.guid[0]._;
0 commit comments