!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"); DoubleRect rect = libreOffice_rect(tag); print("\nLine, style=" + style + ", rect: " + rect); print(" " + join(tag)); pnl(libreOffice_textP(tag)); } }