summaryrefslogtreecommitdiff
path: root/xmlSharedStrings.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2020-05-26 02:09:39 +0800
committerxuri <xuri.me@gmail.com>2020-05-26 02:09:39 +0800
commit5c99300ee44de15e92bd8c5a92f2183c804d1379 (patch)
treeb14643e7f95c06ca6b551d749c5e7d91c8652339 /xmlSharedStrings.go
parent1aeb8182357ae4f1415fccb586c85f26483f0d99 (diff)
Fix #622, storage string to SST (shared string table)
Diffstat (limited to 'xmlSharedStrings.go')
-rw-r--r--xmlSharedStrings.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlSharedStrings.go b/xmlSharedStrings.go
index a6525df..6e34abc 100644
--- a/xmlSharedStrings.go
+++ b/xmlSharedStrings.go
@@ -66,7 +66,7 @@ type xlsxR struct {
// xlsxT directly maps the t element in the run properties.
type xlsxT struct {
XMLName xml.Name `xml:"t"`
- Space string `xml:"xml:space,attr,omitempty"`
+ Space xml.Attr `xml:"space,attr,omitempty"`
Val string `xml:",innerxml"`
}