diff options
author | Ri Xu <xuri.me@gmail.com> | 2016-12-26 18:06:12 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2016-12-26 18:06:12 +0800 |
commit | c5cc500b886366a99641eaa7bc24613f6066fd79 (patch) | |
tree | 3242a5af60d607a6cd8e915b546381aa14f096bb /xmlWorksheet.go | |
parent | 30d0a2f40afadf7fef9e008bf2fa557b07560c54 (diff) |
- Fix issue: pivot cache and extending spreadsheetML missing;
- Compatibility improved: relationship namespace in `workbook.xml` has been changed (`xmlns:mc`, `xmlns:x15` and `mc:Ignorable` added)
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index be7dcc2..4752a15 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -26,6 +26,7 @@ type xlsxWorksheet struct { LegacyDrawing xlsxLegacyDrawing `xml:"legacyDrawing"` Picture xlsxPicture `xml:"picture"` TableParts xlsxTableParts `xml:"tableParts"` + ExtLst xlsxExtLst `xml:"extLst"` } // xlsxDrawing change r:id to rid in the namespace. |