static LL findContainerTagWithParams_debug(L tok, S tag, O... params) { new LL l; for (L t : findContainerTag(tok, tag)) { printStruct("Tag found", t); if (htmlCheckParams(second(t), params)) l.add(t); } ret l; } static LL findContainerTagWithParams_debug(S html, S tag, O... params) { ret findContainerTagWithParams_debug(htmlTok(html), tag, params); }