danmactough / node-feedparser

Robust RSS, Atom, and RDF feed parsing in Node.js
Other
1.97k stars 190 forks source link

HTML content and tags within "description" #269

Closed smokinMonkey closed 5 years ago

smokinMonkey commented 5 years ago

hi guys,

I am using feedparser version 2.2.9 and the feed i'm trying to parse is: "https://www.veganlifemag.com/feed/". As to the description tag of the rss feed, it has HTML content and tags that brackets the content I needed to extract. I was wondering if there is a way to extract the content within the HTML tags.

thank you,

Jerry

danmactough commented 5 years ago

Hi, @smokinMonkey. I'm afraid you'll have to parse the HTML yourself. htmlparser2 is one good library for helping with that.

smokinMonkey commented 5 years ago

@danmactough thank you, I'll look into that lib. thank you again for your help, much appreciated