title
*Section 1
*Paragraph 1.1
*Paragraph 1.2
*Section 2
*Paragraph 2.1
*Paragraph 2.2
*/** * A `SerialScraper` allows for the application of a `Scraper` to a sequence of * sibling nodes. This allows for use cases like targeting the sibling of a node, * or extracting a sequence of sibling nodes (e.g. paragraphs (`
`) under a * header (``)). * * Conceptually, serial scrapers operate on a sequence of tags that correspond * to the immediate children of the currently focused node. For example, given * the following HTML: * * ```html *Paragraph 1.1
*Paragraph 1.2
*Paragraph 2.1
*Paragraph 2.2
*