type Cell struct {
XMLName xml.Name// attributes ValueType string `xml:"value-type,attr"`
Value string `xml:"value,attr"`
Formula string `xml:"formula,attr"`
RepeatedCols int `xml:"number-columns-repeated,attr"`
ColSpan int `xml:"number-columns-spanned,attr"`
P []Par `xml:"p"`
}
PlainText extracts the text from a cell. Space tags (<text:s text:c="#">)
are recognized. Inline elements (like span) are ignored, but the
text they contain is preserved
Parse the content.xml part of an ODS file. On Success
the returned Doc will contain the data of the rows and cells
of the table(s) contained in the ODS file.
type Row struct {
RepeatedRows int `xml:"number-rows-repeated,attr"`
Cell []Cell `xml:",any"` // use ",any" to match table-cell and covered-table-cell}