static S xml_contentsOfTag(L tok, S tag) { for (L tok2 : findContainerTag(tok, tag)) ret join(contentsOfContainerTag(tok2)); null; } static S xml_contentsOfTag(S xml, S tag) { ret xml_contentsOfTag(htmlTok(xml), tag); }