Re: [xsl] Same Indent in converted output xml

Subject: Re: [xsl] Same Indent in converted output xml
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 15 Apr 2021 06:38:10 -0000
Am 15.04.2021 um 06:32 schrieb Byomokesh Sahoo sahoo.byomokesh@xxxxxxxxx:
Hi,

Any way to same indentationB will appear while converting One XML to
Another XML format. I am using indent="yes" but the same indent does not
appear in converted output xml.

I can not use xsl:copy because I have to apply one format to another
format with different scenarios.

_XSL:_

<xsl:output indent="yes" method="xml" />

_INPUT:_
<journal-meta>
<journal-id journal-id-type="publisher-id">ier</journal-id>
<journal-id journal-id-type="publisher-acronym">IERO</journal-id>
<journal-title-group>
<journal-title>Expert</journal-title>
</journal-title-group>
<issn publication-format="print">159</issn>
</journal-meta>

_OUTPUT:_
 B  B  B  <journal-meta>
 B  B  B  B  B <journal-id journal-id-type="CAT">IERO</journal-id>
 B  B  B  B  B <journal-id journal-id-type="publisher">IERO</journal-id>
 B  B  B  B  B <journal-title-group>
 B  B  B  B  B  B  <journal-title>Expert</journal-title>
 B  B  B  B  B </journal-title-group>
 B  B  B  B  B <issn publication-format="print">159</issn>
 B  B  B  </journal-meta>

EXPECTED OUTPUT:

<journal-meta>
<journal-id journal-id-type="publisher-id">ier</journal-id>
<journal-id journal-id-type="publisher-acronym">IERO</journal-id>
<journal-title-group>
<journal-title>Expert</journal-title>
</journal-title-group>
<issn publication-format="print">159</issn>
</journal-meta>

So you just want line breaks but no indentation? I think Saxon PE and EE have an extension attribute on xsl:output you can set. Which XSLT processor do you use?

Current Thread