!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")) {
LL tokLI = map(f textOfContainerTag, html_findLIs(ol));
printStruct("LI: ", tokLI);
}
}