Synthoid / ExportSheetData

Add-on for Google Sheets that allows sheets to be exported as JSON or XML.
MIT License
234 stars 46 forks source link

(XML) Sheet xmlns value is empty #130

Closed Synthoid closed 3 years ago

Synthoid commented 3 years ago

In my haste to deploy v62 I missed an obvious namespacing issue. Sheet elements are not created with namespaces:

<data xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:sa="https://www.apple.com" xmlns:sg="https://www.google.com" xmlns:sm="https://www.microsoft.com">
  <Sheet1 xmlns="">
    <sm:Excel Company="Microsoft" ss:ID="MS" />
    <sg:Sheets Company="Google" ss:ID="G" />
    <sa:Numbers Company="Apple" ss:ID="A" />
  </Sheet1>
</data>
Synthoid commented 3 years ago

Fixed in v63.