!7 p-tt { S html = loadPage("https://en.wikipedia.org/wiki/Most_common_words_in_English"); L tok = htmlTok(html); new TreeMap map; for (L ol : findContainerTagDeep(tok, "ol")) { printStruct("h3", findContainerTag(subList(tok, 0, indexOfSubList(tok, ol)), "h3")); LL tokLI = map(f textOfContainerTag, html_findLIs(ol)); printStruct("LI: ", tokLI); } }