Documentation ¶
Overview ¶
Package privxml exists so that structs can be publicly exported for Go's build-in XML parser. We do not want these to be considered part of the xlsx package's public interface, so we move them into their own package where they are less likely to be accessed by a client programmer.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CellXML ¶
type CellXML struct { R string `xml:"r,attr" json:"ref"` T string `xml:"t,attr" json:"type"` V string `xml:"v" json:"value"` InlineString InlineString `xml:"is" json:"inline_string"` // contains filtered or unexported fields }
func ParseCellXML ¶
type ContentTypeItem ¶
type ContentTypes ¶
type ContentTypes struct { XMLName xml.Name `xml:"Types"` Defaults []ContentTypeItem `xml:"Default"` Overrides []ContentTypeItem `xml:"Override"` }
type InlineString ¶
type InlineString struct { Str string `xml:"t" json:"string_value"` // contains filtered or unexported fields }
Click to show internal directories.
Click to hide internal directories.