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