!7 // tok = htmlTok(xml); for (L tag : findContainerTag(tok, "draw:custom-shape")) { S style = xml_getArg(tag, "draw:style-name"); DoubleRect rect = libreOffice_rect(tag); print("\nCustom shape, style=" + style + ", rect: " + rect); print(" " + join(tag)); pnl(libreOffice_textP(tag)); } for (L tag : findContainerTag(tok, "draw:line")) { S style = xml_getArg(tag, "draw:style-name"); DoublePt p1 = libreOffice_pt1(tag); DoublePt p2 = libreOffice_pt2(tag); print("\nLine, style=" + style + ", pt1: " + pt1 + ", pt2: " + pt2); print(" " + join(tag)); pnl(libreOffice_textP(tag)); } }