XML export adding trailing /

i'm working on adding automated label creation into an existing inventory management app- the labelwriting software i'm using uses standard XML for label templates. I saved one of these out, repopulated fields that need to be provided by appsheets, and voila.. it all works almost as expected.

But in one section, appsheets is adding a trailing / to a section, and it prevents the label software from parsing the resulting xml. My general understanding is that this is used to denote an empty section, and result in it being skipped.. But the section isn't empty! ๐Ÿ™‚

This goes in

 

 

          <Brushes>
            <BackgroundBrush>
              <SolidColorBrush>
                <Color A="0" R="0.1372549" G="0.1215686" B="0.1254902"></Color>
              </SolidColorBrush>
            </BackgroundBrush>
            <BorderBrush>
              <SolidColorBrush>
                <Color A="1" R="0" G="0" B="0"></Color>
              </SolidColorBrush>
            </BorderBrush>
            <StrokeBrush>
              <SolidColorBrush>
                <Color A="1" R="0" G="0" B="0"></Color>
              </SolidColorBrush>
            </StrokeBrush>
            <FillBrush>
              <SolidColorBrush>
                <Color A="0" R="0.1372549" G="0.1215686" B="0.1254902"></Color>
              </SolidColorBrush>
            </FillBrush>
          </Brushes>

 

 

 

And this comes out

 

 

 

          <Brushes/>
            <BackgroundBrush>
              <SolidColorBrush>
                <Color A="0" R="0.1372549" G="0.1215686" B="0.1254902"></Color>
              </SolidColorBrush>
            </BackgroundBrush>
            <BorderBrush>
              <SolidColorBrush>
                <Color A="1" R="0" G="0" B="0"></Color>
              </SolidColorBrush>
            </BorderBrush>
            <StrokeBrush>
              <SolidColorBrush>
                <Color A="1" R="0" G="0" B="0"></Color>
              </SolidColorBrush>
            </StrokeBrush>
            <FillBrush>
              <SolidColorBrush>
                <Color A="0" R="0.1372549" G="0.1215686" B="0.1254902"></Color>
              </SolidColorBrush>
            </FillBrush>
          </Brushes>

 

 

0 1 57
1 REPLY 1

bump

Top Labels in this Space