Serialize formula if present

It seems to be important that the <f>..</f> comes before the <v>..</v>
This commit is contained in:
johnyesberg 2014-09-13 21:58:24 +10:00
parent 19f3a6ae76
commit fffc958a9e

View File

@ -2930,6 +2930,9 @@ function write_ws_xml_cell(cell, ref, ws, opts, idx, wb) {
}
o.t = "str"; break;
}
if (cell.f) {
v = writetag('f',escapexml(cell.f)) + v;
}
return writextag('c', v, o);
}