Warning: session_start(): open(/var/lib/php/sessions/sess_b6lm1v8geeie5pg88hah9uj11s, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// tok must come from htmlTok
// returns all container tags found (including content) as CNC
// should be OK for both HTML and XML
static LL findContainerTagWithClass(L tok, S tag, S className) {
ret filter(findContainerTag(tok, tag), t -> tagHasClass(tok, className));
}
static LL findContainerTagWithClass(S html, S tag, S className) {
ret findContainerTagWithClass(htmlTok(html), tag, className);
}