2016-08-30 11:51:31 +08:00
|
|
|
package excelize
|
|
|
|
|
2016-12-22 10:10:40 +08:00
|
|
|
import "encoding/xml"
|
2016-08-30 11:51:31 +08:00
|
|
|
|
2017-04-23 00:10:23 +08:00
|
|
|
// xlsxTypes directly maps the types element of content types for relationship
|
2017-03-10 23:10:15 +08:00
|
|
|
// parts, it takes a Multipurpose Internet Mail Extension (MIME) media type as a
|
|
|
|
// value.
|
2016-08-30 11:51:31 +08:00
|
|
|
type xlsxTypes struct {
|
|
|
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/package/2006/content-types Types"`
|
|
|
|
Overrides []xlsxOverride `xml:"Override"`
|
|
|
|
Defaults []xlsxDefault `xml:"Default"`
|
|
|
|
}
|
|
|
|
|
2017-03-10 23:10:15 +08:00
|
|
|
// xlsxOverride directly maps the override element in the namespace
|
|
|
|
// http://schemas.openxmlformats.org/package/2006/content-types
|
2016-08-30 11:51:31 +08:00
|
|
|
type xlsxOverride struct {
|
|
|
|
PartName string `xml:",attr"`
|
|
|
|
ContentType string `xml:",attr"`
|
|
|
|
}
|
|
|
|
|
2017-03-10 23:10:15 +08:00
|
|
|
// xlsxDefault directly maps the default element in the namespace
|
|
|
|
// http://schemas.openxmlformats.org/package/2006/content-types
|
2016-08-30 11:51:31 +08:00
|
|
|
type xlsxDefault struct {
|
|
|
|
Extension string `xml:",attr"`
|
|
|
|
ContentType string `xml:",attr"`
|
|
|
|
}
|