gRegorLoveFor implied photo parsing, not sure I grok this selector: "else if .h-x>:only-child>img[src]:only-of-type:not[.h-*] then use that img src for photo"
tantek.h-x>:only-child means: Selects any element that has no siblings that is a child of any element with a class attribute that contains the word h-x.
gRegorLove"Selects any img element with a src attribute and that has no siblings of its type that is a child of any element that has no siblings that is a child of any element with a class attribute that contains the word h-entry."
gRegorLoveOh, duh. I glossed over the simpler version I was looking for. "else if .h-x>img[src]:only-of-type:not[.h-*] then use that img src for photo"