diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-04-28 15:49:41 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-04-28 15:49:41 +0800 |
commit | 46b8c46d91be522c3dff1044a23810ecb1a81c96 (patch) | |
tree | 7dd4b314a2da1d81ea2ac8425a7e4ed5c8e1dc21 /xmlDrawing.go | |
parent | 2868bd3ec96db130b1116e4c576b3aab8efb868a (diff) |
- Initialize table support;
- go test updated
Diffstat (limited to 'xmlDrawing.go')
-rw-r--r-- | xmlDrawing.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xmlDrawing.go b/xmlDrawing.go index 156b2ac..baab798 100644 --- a/xmlDrawing.go +++ b/xmlDrawing.go @@ -5,6 +5,7 @@ const ( SourceRelationship = "http://schemas.openxmlformats.org/officeDocument/2006/relationships" SourceRelationshipChart = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart" SourceRelationshipImage = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" + SourceRelationshipTable = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/table" SourceRelationshipDrawingML = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing" SourceRelationshipHyperLink = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink" SourceRelationshipWorkSheet = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" @@ -14,7 +15,8 @@ const ( SourceRelationshipCompatibility = "http://schemas.openxmlformats.org/markup-compatibility/2006" NameSpaceDrawingML = "http://schemas.openxmlformats.org/drawingml/2006/main" NameSpaceDrawingMLChart = "http://schemas.openxmlformats.org/drawingml/2006/chart" - NameSpaceSpreadSheetDrawing = "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" + NameSpaceDrawingMLSpreadSheet = "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" + NameSpaceSpreadSheet = "http://schemas.openxmlformats.org/spreadsheetml/2006/main" NameSpaceXML = "http://www.w3.org/XML/1998/namespace" ) |