// tok must come from htmlTok
// returns all container tags found (including content) as CNC
// honors nested tags correctly
static LL findContainerTagWithParams(L tok, S tag, O... params) {
new LL l;
for (L t : findContainerTag(tok, tag))
if (htmlCheckParams(second(t), params))
l.add(t);
ret l;
}
static LL findContainerTagWithParams(S html, S tag, O... params) {
ret findContainerTagWithParams(htmlTok(html), tag, params);
}