Cheerio Crawler inner text
When creating a simple cheerio crawler and retrieving all the contents within a specific div tag that is contained within the retrieved content, if I use the .text() method, it appears to strip out all the HTML tags and concatenate content from different children tags without any spacing/delimiters. If i do a similar crawler utilizing puppeteer and call the innerText method on a particular retrieved tag it appears to be put spacing/newlines between the content contained in different child tags. Is there any capability in the cheerio crawler to pull the content out similar to how puppeteer does it?