Open lakshminarasimhan93 opened 3 years ago
I am trying to fetch attribute which is repeated multiple times, consider this example
<entry> <link rel="enclosure" type="image/jpeg" href="https://assets.wam.ae/uploads/2021/01/thumbnail-362163802411229244.jpg" /> <link rel="alternate" type="text/html" href="http://wam.ae/en/details/1395302905328"></link> </entry>
I want to retrieve the link tag with rel="enclosure" attribute, I have tried using custom fields option , but unable to fetch
let rssParser = new RssParser({ customFields: { item:['link', {keepArray: true}], } });
its working now , seems that I have missed out logic in my code
I am trying to fetch attribute which is repeated multiple times, consider this example
I want to retrieve the link tag with rel="enclosure" attribute, I have tried using custom fields option , but unable to fetch