diff options
author | xuri <xuri.me@gmail.com> | 2020-09-03 23:44:43 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-09-03 23:44:43 +0800 |
commit | 1111de2fdb7da9aa9f039f5173a6dafa6d98029c (patch) | |
tree | 90bfde21945cd6f6182f0471764123a0cf91862c /xmlSharedStrings.go | |
parent | 98f1a699033b76a1482edc03d533dd1f67bcd2d6 (diff) |
improve compatibility for phonetic hint and sheet tab color
Diffstat (limited to 'xmlSharedStrings.go')
-rw-r--r-- | xmlSharedStrings.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xmlSharedStrings.go b/xmlSharedStrings.go index d5fe4a7..f59119f 100644 --- a/xmlSharedStrings.go +++ b/xmlSharedStrings.go @@ -38,8 +38,10 @@ type xlsxSST struct { // level - then the string item shall consist of multiple rich text runs which // collectively are used to express the string. type xlsxSI struct { - T *xlsxT `xml:"t,omitempty"` - R []xlsxR `xml:"r"` + T *xlsxT `xml:"t,omitempty"` + R []xlsxR `xml:"r"` + RPh []*xlsxPhoneticRun `xml:"rPh"` + PhoneticPr *xlsxPhoneticPr `xml:"phoneticPr"` } // String extracts characters from a string item. |