I use scrapy to crawl a website.I want to extract contents of certain div.\[code\]<div class="short-description">{some mess with text, <br>, other html tags, etc}</div>loader.add_xpath('short_description', "//div[@class='short-description']/div")\[/code\]By that code I get what I need but result includes wrapping html (\[code\]<div class="short-description">...</div>\[/code\])How to get rid of that parent html tag?Note. Selector like text(), node() cannot help me, because my div contains \[code\]<br>, <p>, other divs, etc.\[/code\], whitespaces, and I need to keep them.