I would like to use xml-conduit for parsing some very large XML files since it seems to be the only XML library for Haskell that can use Text. Unfortunately my XML file has a lot of attributes for some entities (more than 500!) and I need only a few of these (let's say numbers 5, 55, 265, 421). Therefore it is not acceptable for me to explicitly process all the attributes. The function ignoreAttrs is not really helpful because it just discards all remaining attributes.
How can I create some AttrParser that allow me to parse only some very specific attributes?
