format an xml string in Ruby
- by user1476512
given an xml string like this :
<some><nested><xml>value</xml></nested></some>
what's the best option(using ruby) to format it readable like :
<some>
<nested>
<xml>value</xml>
</nested>
</some>
I've found an answer here: what's the best way to format an xml string in ruby?, which is really helpful. But it formats xml like:
<some>
<nested>
<xml>
value
</xml>
</nested>
</some>
As my xml string is a little big in length. So it is not readable in this format.
Thanks in advance!