summaryrefslogtreecommitdiff
path: root/xmlSharedStrings.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-06-11 22:48:37 +0800
committerxuri <xuri.me@gmail.com>2021-06-11 22:48:37 +0800
commit83e12cc4e5242904366a51f642596acbc9f9dd56 (patch)
treeaf3d4ecbebdd19b55bc0651d5e88bc0bc6683850 /xmlSharedStrings.go
parent38162539b61b2b429b0498198ed58e1ef53d284b (diff)
support escaped string literal basic string and use GitHub Action instead of TravisCI
- Note that: travis-ci.org will shutdown on June 15th, 2021, and I don't have enough permission to migrate this project to travis-ci.com currently
Diffstat (limited to 'xmlSharedStrings.go')
-rw-r--r--xmlSharedStrings.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlSharedStrings.go b/xmlSharedStrings.go
index 7cb23fd..816c931 100644
--- a/xmlSharedStrings.go
+++ b/xmlSharedStrings.go
@@ -53,10 +53,10 @@ func (x xlsxSI) String() string {
rows.WriteString(s.T.Val)
}
}
- return rows.String()
+ return bstrUnmarshal(rows.String())
}
if x.T != nil {
- return x.T.Val
+ return bstrUnmarshal(x.T.Val)
}
return ""
}