odf
odf copied to clipboard
Packages odf and odf/ods that allow basic read-only access to Open Document Spreadsheets in Go (golang).
Results
1
odf issues
Sort by
recently updated
recently updated
newest added
``` func GetLinesIdxTxtMaps(odsFile *ods.File, tableIndex int) ([]map[int]string, error) { var doc ods.Doc if err := odsFile.ParseContent(&doc); err != nil { return nil, errors.WithMessage(err, "wrong") } if len(doc.Table) < tableIndex {...