Skip to content

Commit

Permalink
XLSX SST treat <si></si> as empty (fixes #2083)
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin committed Aug 12, 2020
1 parent abed474 commit 3b589f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bits/42_sstxml.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ var sirphregex = /<(?:\w+:)?rPh.*?>([\s\S]*?)<\/(?:\w+:)?rPh>/g;
function parse_si(x, opts) {
var html = opts ? opts.cellHTML : true;
var z = {};
if(!x) return null;
if(!x) return { t: "" };
//var y;
/* 18.4.12 t ST_Xstring (Plaintext String) */
// TODO: is whitespace actually valid here?
Expand Down

0 comments on commit 3b589f0

Please sign in to comment.