diff --git a/sheet.go b/sheet.go
index 36488d59..088a6512 100644
--- a/sheet.go
+++ b/sheet.go
@@ -125,6 +125,8 @@ func replaceRelationshipsNameSpace(workbookMarshal string) string {
func replaceRelationshipsID(workbookMarshal string) string {
rids := strings.Replace(workbookMarshal, ``, ``, -1)
rids = strings.Replace(rids, ``, ``, -1)
+ rids = strings.Replace(rids, ``, ``, -1)
+ rids = strings.Replace(rids, ``, ``, -1)
return strings.Replace(rids, `
+// ...
+//
+//
+//
+//
+//
+type xlsxTableParts struct {
+ Count int `xml:"count,attr"`
+ TableParts []xlsxTablePart `xml:"tablePart"`
+}
+
+// xlsxTablePart directly maps the tablePart element in the namespace
+// http://schemas.openxmlformats.org/spreadsheetml/2006/main
+type xlsxTablePart struct {
+ RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
+}
+
+// xlsxPicture directly maps the picture element in the namespace
+// http://schemas.openxmlformats.org/spreadsheetml/2006/main -
+// Background sheet image.
+// Example:
+//
+//
+//
+type xlsxPicture struct {
+ RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"` // Relationship Id pointing to the image part.
+}