static L contentsOfPTags(S html) { new L l; for (L tag : findContainerTag(htmlTok(html), "p")) l.add(join(contentsOfContainerTag(tag))); ret l; }