!752 sclass OneLiner { S userName; S contents; // html } p { S html = loadNTSnippet("#3000394"); psl(getOneLiners(html)); } static L getOneLiners(S html) { new L out; L tok = htmlTok(html); int i = tok.indexOf("
"); if (i >= 0) { int j = findEndOfContainerTag(tok, i); if (j >= 0) { L tok2 = subList(tok, i+1, j-1); //psl(tok2); L> l = unwrapContainerTags(findContainerTag(tok2, "li")); for (L tok3 : l) pcall { psl(tok3); int k = tok3.indexOf("/a"); new OneLiner o; o.userName = getHtmlTagParameter(tok3.get(1), "title"); o.contents = join(subList(tok3, k+1)); out.add(o); } } } ret out; }