// tok must come from htmlTok
// returns content of all container tags found as CNC
// should be OK for both HTML and XML
static LL stringContentsOfFirstContainerTag(L tok, S tag) {
ret join(contentsOfContainerTag(first(findContainerTag(tok, tag))));
}
static LL stringContentsOfFirstContainerTag(S html, S tag) {
ret stringContentsOfFirstContainerTag(htmlTok(html), tag);
}