I read a lot of articles and when I don't have the time to go through one I do three things:
So what happens after that is Notion/Medium/Instapaper scrape the page so that when I do have the time I don't have to look for the link rather just open one of those platforms and the article will be saved under my profile.
So my question is how are they able to achieve that?
Because each website's HTML document is different, and my knowledge around scraping is that you have to know how the document structure looks like to collect relevant info. For example:
.article which will house the article body but then if another developer uses a css-in-js library then that won't be effective.<article> and houses the article body, [chrome reader mode works when you do it this way] inside but another developer might use <div>I asked one of my friends he mentioned they might be doing some analysis on the page and figuring out when an article starts and ends.
Any help?