Skip to content

Commit

Permalink
fix xml tag order to fit XML schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoshiki Shibukawa committed Jan 21, 2015
1 parent c1e75e5 commit 3ffda56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmlWorksheet.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import (
type xlsxWorksheet struct {
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/spreadsheetml/2006/main worksheet"`
SheetPr xlsxSheetPr `xml:"sheetPr"`
Dimension xlsxDimension `xml:"dimension"`
SheetViews xlsxSheetViews `xml:"sheetViews"`
SheetFormatPr xlsxSheetFormatPr `xml:"sheetFormatPr"`
Dimension xlsxDimension `xml:"dimension"`
Cols xlsxCols `xml:"cols"`
SheetData xlsxSheetData `xml:"sheetData"`
PrintOptions xlsxPrintOptions `xml:"printOptions"`
PageMargins xlsxPageMargins `xml:"pageMargins"`
PageSetUp xlsxPageSetUp `xml:"pageSetup"`
SheetData xlsxSheetData `xml:"sheetData"`
HeaderFooter xlsxHeaderFooter `xml:"headerFooter"`
}

Expand Down

0 comments on commit 3ffda56

Please sign in to comment.