tealeg / xlsx

Go library for reading and writing XLSX files.
Other
5.81k stars 810 forks source link

RowLimit option truncating xml ignore xmlns prefix #756

Closed xieziheng1 closed 1 year ago

xieziheng1 commented 1 year ago

Example:

<x:worksheet xmlns:x="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><x:sheetData></x:sheetData></x:worksheet>

Got error:

xml.Decoder.Decode: XML syntax error on line 1: element <sheetData> in space x closed by </sheetData> in space 

truncateSheetXML append hardcode string to the sheet end. https://github.com/tealeg/xlsx/blob/840e9ee9b9adac9706540392005df460771b08cd/lib.go#L20 https://github.com/tealeg/xlsx/blob/840e9ee9b9adac9706540392005df460771b08cd/lib.go#L1135