!7 // tok = htmlTok(xml); for (L tag : findContainerTag(tok, "draw:custom-shape")) { S style = xml_getArg(tag, "draw:style-name"); print("\nCustom shape, style=" + style); print(" " + join(tag)); pnl(libreOffice_textP(tag)); } for (L tag : findContainerTag(tok, "draw:line")) { S style = xml_getArg(tag, "draw:style-name"); print("\nLine, style=" + style); print(" " + join(tag)); pnl(libreOffice_textP(tag)); } }