static L<S> rawTextFromODT(File odt) {
// unwrapContainerTags makes editable lists
L<L<S>> paragraphs = unwrapContainerTags(paragraphsFromODT(odt));
paragraphs = map(paragraphs, func(L<S> p) {
dropListPrefix(p, "", "<text:soft-page-break/>")
L<S> p = paragraphs.get(i);
while ((idx = p.indexOf("<text:line-break/>")) >= 0) {
paragraphs.add(i+1, newSubList(p, idx+1));
removeSubList(p, 0, idx+1);
// nb: we might need to remove formatting if user used any
L<S> lines = map(paragraphs, func(L<S> p) { join(" # ", p) });
lines = map(lines, func(S s) { trim(htmldecode(s)) });
paragraphs = rawTextFromODT_groupParagraphs(lines);
lines = map(paragraphs, func(L<S> p) { fromLines(p) });