// tok must come from htmlTok
sS stringContentsOfFirstContainerTag(L tok, S tag) {
ret join(contentsOfContainerTag(first(findContainerTag(tok, tag))));
}
sS stringContentsOfFirstContainerTag(S html, S tag) {
ret stringContentsOfFirstContainerTag(htmlTok(html), tag);
}