given an xml string like this:
<some><nested><xml>value</xml></nested></some>
what's the best option (using ruby) to format it into something readable like:
<some>
<nested>
<xml>value</xml>
</nested>
</some>
|
given an xml string like this:
what's the best option (using ruby) to format it into something readable like:
|
|||
|
|
The #write writes to anything that takes <<(string), so this is valid too:
|
|||
|
|
|
just noticed that builder has an |
||||
|
|