// html = содержимое файла
const $ = cheerio.load(html)
const h1 = $('.article h1').text()
const body = $('.article__body p') // все р
.map((i, el) => $(el).text()) // текст из них
.toArray() // массив из них
allImageLinks = data('img')
.map(function(i, el) {
return $(this).attr('src');
})
.toArray()
h2, h3 {
padding-top: 40px;
margin-top: -40px;
}