I need to transform a XML-String as coming from a simple transformation into a human readable XML-File. That means with linebreaks and logical indenting, each line not longer than n charactors.
Example:
<one><two>text</two><three><four>text</four></three></one>
into
<one>
<two>text</two>
<three>
<four>text</four>
</three>
</one>