Using XSL, I am trying to figure out a way to copy each attribute to new line. But I couldn’t get a solution. Can anyone please let me know how to do that using XSL.
Input XML:
<Pane attr1="value1" attr2="value2" attr3="value3">
<children>
<title>A</title>
</children>
</Pane>
Output XML:
<Pane attr1="value1"
attr2="value2"
attr3="value3">
<children>
<title>A</title>
</children>
</Pane>