xml-js trims off the spaces in the text following each other ```xml <some>some text </some> ``` converts to: ```js {type: "text", "text: "some text "} // where are my spaces?? ``` OR ```xml <some> <some> ``` converts to: ```js {type: "element", name: "some"} // And that's it. Where is my text with empty space? ```