Extracting Text Between Two Custom Comment Fields

I'm trying to extract text that is found between html comment fields as shown below:

<!-- Start Description-->
<p>This is the description</p>
<p>more descrption info</p>
<!-- End Description-->

Is it possible to grab everything between the start/end description comments?

Depending on the structure, you can just use the selector for the main description element and not drill down any further into the paragraphs. This way the scraper will collect all of the elements that are within the description.