When I use pup to parse multiple types of selectors, like ```bash curl URL | pup 'h1,h2,h3' ``` it lists all the `h1` elements, followed by all the `h2`s and `h3`s. Is there a way to keep the initial ordering of the elements as they appear in the HTML?
When I use pup to parse multiple types of selectors, like
it lists all the
h1elements, followed by all theh2s andh3s.Is there a way to keep the initial ordering of the elements as they appear in the HTML?