#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"
#gRegorLoveonly-child .... only-of-type ... doesn't make sense to me. Isn't it the same thing?
#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"Syntax error at `.' at or near line 1:48"
#tantekthat should explain enough of it for it to make sense
#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"
#gRegorLoveNow I get it. Thanks! Selectoracle is rad