This is a really simple newbie question ...
But what would be the XSL look like that would take any well formed XML and
output it in nice indended XML style ... ?
eg From :-
<DUDE><NAME value="fred/><ADDRESS value="somewhere"/></DUDE>
To :-
<DUDE>
<NAME value="fred"/>
<ADDRESS value="somewhere"/>
</DUDE>
TIA
RR